From 7d145d3265d1de8daaccc13e8a50aa8930706790 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Sat, 7 Dec 2019 18:57:27 +0800 Subject: 3.2.15 Fix #199 Close #195 Close #138 --- src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java') diff --git a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java index bcb60b331..e2e3d44e5 100644 --- a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java +++ b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java @@ -193,6 +193,11 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { return technical.registerRecipesInAnotherThread; } + @Override + public boolean doesSnapToRows() { + return appearance.snapToRows; + } + public static class General { @Comment("Declares whether cheating mode is on.") private boolean cheating = false; @@ -233,6 +238,7 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { private boolean villagerScreenPermanentScrollBar = false; @Comment("Declares whether if entry list widget is scrolled.") private boolean scrollingEntryListWidget = false; + private boolean snapToRows = false; } public static class Technical { -- cgit