Skip to content

Commit

Permalink
update: github wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
sakurawald committed Jul 6, 2024
1 parent 37434b1 commit e2b9393
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/main/java/io/github/sakurawald/config/model/ConfigModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,9 @@ public class Ping {

@Comment("""
This module allows you to custom every system-message defined by mojang in `./assets/minecraft/lang/en_us.json`
The mojang offical en_us.json file may looks like: [en_us.json for minecraft 1.21](https://github.com/sakurawald/fuji-fabric/blob/dev/.github/files/en_us.json)
""")
public class SystemMessage {
public boolean enable = false;
Expand All @@ -753,14 +756,17 @@ public class SystemMessage {
};
}

@Comment("This module provides `/enderchest` command.")
public class EnderChest {
public boolean enable = false;
}

@Comment("This module provides `/workbench` command.")
public class Workbench {
public boolean enable = false;
}

@Comment("This module provides `/enchantment` command.")
public class Enchantment {

public boolean enable = false;
Expand All @@ -779,28 +785,35 @@ public class OverridePower {

}

@Comment("This module provides `/anvil` command.")
public class Anvil {

public boolean enable = false;
}

@Comment("This module provides `/grindstone` command.")
public class GrindStone {

public boolean enable = false;
}

@Comment("This module provides `/stonecutter` command.")
public class StoneCutter {

public boolean enable = false;
}

@Comment("This module provides `/bed` command, which teleports the player to his bed.")
public Bed bed = new Bed();

public class Bed {

public boolean enable = false;
}

@Comment("""
This module provides `/sit` command, and the ability to sit by right-click any chair.
""")
public Sit sit = new Sit();

public class Sit {
Expand All @@ -816,6 +829,12 @@ public class Sit {

public CommandAlias command_alias = new CommandAlias();

@Comment("""
This module provides command alias.
An alias means we redirect a command-node into another command-node.
The requirement of comamnd-node is extended.
""")
public class CommandAlias {
public boolean enable = false;
public List<CommandAliasEntry> alias = new ArrayList<>() {
Expand All @@ -828,6 +847,9 @@ public class CommandAlias {

public CommandRewrite command_rewrite = new CommandRewrite();

@Comment("""
This module provides command rewrite, so that you can rewrite the `command line` a player issued.
""")
public class CommandRewrite {
public boolean enable = false;
public List<CommandRewriteEntry> rules = new ArrayList<>() {
Expand Down

0 comments on commit e2b9393

Please sign in to comment.