From 8a2df51193fd3db145f3b1ace974e9e0a0bc09a5 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Wed, 5 Aug 2020 17:14:07 +0800 Subject: REI 5.1.0: - Improve auto crafting, now able to detect things on the grid - Introduce getResultingEntries as a replacement for getOutputEntries, it can now handle lists of lists of stacks - Caching for fluid hashing - Full fractions support for simple recipe display - Made searchFavorites defaulted false Signed-off-by: shedaniel --- .../src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java') diff --git a/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java b/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java index 3723628ec..f4792168c 100644 --- a/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java +++ b/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java @@ -448,7 +448,7 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { } public static class Search { - @Comment("Declares whether favorites will be searched.") private boolean searchFavorites = true; + @Comment("Declares whether favorites will be searched.") private boolean searchFavorites = false; @Comment("Declares whether search time should be debugged.") private boolean debugSearchTimeRequired = false; @Comment("Declares whether REI should search async.") private boolean asyncSearch = true; @Comment("Declares how many entries should be grouped one async search.") @ConfigEntry.BoundedDiscrete(min = 25, max = 400) -- cgit