diff options
| author | shedaniel <daniel@shedaniel.me> | 2022-04-13 20:28:53 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2022-04-13 20:28:53 +0800 |
| commit | 5d8b72da3c3dfe386c3e0450687a4fa5162e5e18 (patch) | |
| tree | 678f60318a1f18d5b6c6a8d988ad9d20b3372d33 | |
| parent | ed36b3a2bb3662aeba7afc57e8116706f4d25da2 (diff) | |
| download | RoughlyEnoughItems-5d8b72da3c3dfe386c3e0450687a4fa5162e5e18.tar.gz RoughlyEnoughItems-5d8b72da3c3dfe386c3e0450687a4fa5162e5e18.tar.bz2 RoughlyEnoughItems-5d8b72da3c3dfe386c3e0450687a4fa5162e5e18.zip | |
Make craftable filter defaulted on
| -rw-r--r-- | runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java b/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java index 968cf4148..0f273b7e8 100644 --- a/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java +++ b/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java @@ -570,7 +570,7 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { private SearchFieldLocation searchFieldLocation = SearchFieldLocation.CENTER; @Comment("Declares the position of the config button.") @ConfigEntry.Gui.EnumHandler(option = ConfigEntry.Gui.EnumHandler.EnumDisplayOption.BUTTON) private ConfigButtonPosition configButtonLocation = ConfigButtonPosition.LOWER; - @Comment("Declares whether the craftable filter button is enabled.") private boolean enableCraftableOnlyButton = false; + @Comment("Declares whether the craftable filter button is enabled.") private boolean enableCraftableOnlyButton = true; } @UsePercentage(min = 0.1, max = 1.0, prefix = "Limit: ") private double horizontalEntriesBoundaries = 1.0; |
