aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java')
-rw-r--r--src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java6
1 files changed, 6 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 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 {