diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-05-07 18:30:54 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-05-07 18:30:54 +0800 |
| commit | 5357ec90f80768b69b197161e877e3ef884650a4 (patch) | |
| tree | 23cc18b2e544c5fc609f511a4a18ff3112891262 /src/main/java/me/shedaniel/rei/client/ConfigObject.java | |
| parent | 6fad30c3819f850f00d2498de69f756571c1fdc3 (diff) | |
| download | RoughlyEnoughItems-5357ec90f80768b69b197161e877e3ef884650a4.tar.gz RoughlyEnoughItems-5357ec90f80768b69b197161e877e3ef884650a4.tar.bz2 RoughlyEnoughItems-5357ec90f80768b69b197161e877e3ef884650a4.zip | |
2.8.2 Build 104
Fixed #81
Close #82
Close #83
Diffstat (limited to 'src/main/java/me/shedaniel/rei/client/ConfigObject.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/client/ConfigObject.java | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/src/main/java/me/shedaniel/rei/client/ConfigObject.java b/src/main/java/me/shedaniel/rei/client/ConfigObject.java index 7ee02b5fe..af100f3fc 100644 --- a/src/main/java/me/shedaniel/rei/client/ConfigObject.java +++ b/src/main/java/me/shedaniel/rei/client/ConfigObject.java @@ -11,8 +11,7 @@ public class ConfigObject { @Comment("The ordering of the items on the item panel.") public ItemListOrdering itemListOrdering = ItemListOrdering.registry; - @Comment("The ordering of the items on the item panel.") - public boolean isAscending = true; + @Comment("The ordering of the items on the item panel.") public boolean isAscending = true; @Comment("To toggle the craftable button next to the search field.") public boolean enableCraftableOnlyButton = true; @@ -23,40 +22,34 @@ public class ConfigObject { @Comment("The command used in servers to cheat items") public String giveCommand = "/give {player_name} {item_identifier}{nbt} {count}"; - @Comment("The command used to change gamemode") - public String gamemodeCommand = "/gamemode {gamemode}"; + @Comment("The command used to change gamemode") public String gamemodeCommand = "/gamemode {gamemode}"; - @Comment("The command used to change weather") - public String weatherCommand = "/weather {weather}"; + @Comment("The command used to change weather") public String weatherCommand = "/weather {weather}"; - @Comment("True: item panel on the left, false: on the right") - public boolean mirrorItemPanel = false; + @Comment("True: item panel on the left, false: on the right") public boolean mirrorItemPanel = false; @Comment("To disable REI's default plugin, don't change this unless you understand what you are doing") public boolean loadDefaultPlugin = true; - @Comment("Maximum recipes viewed at one time.") - public int maxRecipePerPage = 3; + @Comment("Maximum recipes viewed at one time.") public int maxRecipePerPage = 3; - @Comment("Toggle utils buttons") - public boolean showUtilsButtons = false; + @Comment("Toggle utils buttons") public boolean showUtilsButtons = false; - @Comment("Disable Recipe Book") - public boolean disableRecipeBook = false; + @Comment("Disable Recipe Book") public boolean disableRecipeBook = false; public boolean preferVisibleRecipes = false; // @Comment("Enable support for old REI plugins which uses registerSpeedCraft") // public boolean enableLegacySpeedCraftSupport = false; - @Comment("Force enable 2019 REI April Fools' joke") - public boolean aprilFoolsFish2019 = false; + @Comment("Force enable 2019 REI April Fools' joke") public boolean aprilFoolsFish2019 = false; public ItemCheatingMode itemCheatingMode = ItemCheatingMode.REI_LIKE; public boolean lightGrayRecipeBorder = false; - @Comment("The location of choose page dialog, will automatically be set to your last location so there is no need to change this.") + @Comment( + "The location of choose page dialog, will automatically be set to your last location so there is no need to change this.") public RelativePoint choosePageDialogPoint = new RelativePoint(.5, .5); } |
