aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2019-11-26 20:59:59 +0800
committershedaniel <daniel@shedaniel.me>2019-11-26 20:59:59 +0800
commit516f882d348cd9535a963f3674597ca680c49909 (patch)
tree95048c24b82274d0e7cfcce8143f5a39705937f7 /src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
parent295dae46f8f3b717c914adacc023e7692b82bfc1 (diff)
downloadRoughlyEnoughItems-516f882d348cd9535a963f3674597ca680c49909.tar.gz
RoughlyEnoughItems-516f882d348cd9535a963f3674597ca680c49909.tar.bz2
RoughlyEnoughItems-516f882d348cd9535a963f3674597ca680c49909.zip
3.2.12
Fixed #29
Diffstat (limited to 'src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java')
-rw-r--r--src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
index a4d89f58d..bcb60b331 100644
--- a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
+++ b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
@@ -203,14 +203,17 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData {
public static class Appearance {
@Comment("The ordering of the items on the item panel.")
+ @UseEnumSelectorInstead
private ItemListOrderingConfig itemListOrdering = ItemListOrderingConfig.REGISTRY_ASCENDING;
@Comment("Declares the appearance of REI windows.")
private boolean darkTheme = false;
@Comment("Whether REI should render entry's overlay.\nExample: Enchantment Glint")
private boolean renderEntryExtraOverlay = true;
@Comment("The ordering of the items on the item panel.")
+ @UseEnumSelectorInstead
private RecipeScreenType recipeScreenType = RecipeScreenType.UNSET;
@Comment("Declares the position of the search field.")
+ @UseEnumSelectorInstead
private SearchFieldLocation searchFieldLocation = SearchFieldLocation.CENTER;
@Comment("Declares the position of the item list panel.")
private boolean mirrorItemPanel = false;
@@ -220,6 +223,7 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData {
@Comment("Declares whether REI should lighten the button if hovered.")
private boolean lighterButtonHover = true;
private boolean clickableRecipeArrows = true;
+ @UseEnumSelectorInstead
private ItemCheatingMode itemCheatingMode = ItemCheatingMode.REI_LIKE;
@Comment("Declares the appearance of recipe's border.")
private boolean lightGrayRecipeBorder = false;