From d37097b07e1b020cafa9b8dcea03e158a9926727 Mon Sep 17 00:00:00 2001 From: J-RAP Date: Thu, 14 Mar 2024 13:27:23 -0600 Subject: [PATCH] fix hide JEI is busted by fast chests --- changelog.md | 1 + .../embeddiumplus/foundation/embeddium/EmbPlusOptions.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 65a0d13..6f8a470 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,7 @@ - [🔥] Added Zoom options on Video settings - 🔥 Now you can configure all options of Zume easier and faster. - [🛠️] Added crash warning for Xenon (avoid any weird report) +- [🐛] Fixed hide JEI option can't be used if Flywheel is enabled # RELEASE 1.2.4 - [🛠️] Removed ported code of Lamb Dynamic Lights diff --git a/src/main/java/me/srrapero720/embeddiumplus/foundation/embeddium/EmbPlusOptions.java b/src/main/java/me/srrapero720/embeddiumplus/foundation/embeddium/EmbPlusOptions.java index ce038db..4ad2ae4 100644 --- a/src/main/java/me/srrapero720/embeddiumplus/foundation/embeddium/EmbPlusOptions.java +++ b/src/main/java/me/srrapero720/embeddiumplus/foundation/embeddium/EmbPlusOptions.java @@ -163,7 +163,7 @@ public static void setPerformanceOptions(List groups, SodiumOptions EmbyConfig.hideJREI.set(value); EmbyConfig.hideJREICache = value; }, - (options) -> FastModels.canUseOnChests() && EmbyConfig.hideJREICache) + (options) -> EmbyConfig.hideJREICache) .setImpact(OptionImpact.LOW) .setEnabled(EmbyTools.isModInstalled("jei")) .build();