From 33deaaeeeca92fdb186c74a79675a55aa067fa8b Mon Sep 17 00:00:00 2001 From: shedaniel Date: Wed, 15 Jun 2022 23:03:21 +0800 Subject: Add REIPluginLoader and resolve dists properly --- .../impl/client/gui/screen/UncertainDisplayViewingScreen.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'runtime/src/main/java/me') diff --git a/runtime/src/main/java/me/shedaniel/rei/impl/client/gui/screen/UncertainDisplayViewingScreen.java b/runtime/src/main/java/me/shedaniel/rei/impl/client/gui/screen/UncertainDisplayViewingScreen.java index 6b8e49ff4..ee0f7381c 100644 --- a/runtime/src/main/java/me/shedaniel/rei/impl/client/gui/screen/UncertainDisplayViewingScreen.java +++ b/runtime/src/main/java/me/shedaniel/rei/impl/client/gui/screen/UncertainDisplayViewingScreen.java @@ -102,11 +102,11 @@ public class UncertainDisplayViewingScreen extends Screen { this.parent = parent; this.showTips = showTips; if (showTips && false && Platform.isForge()) { - this.jeiEnabled = ConfigObject.getInstance().isJEICompatibilityLayerEnabled(); - allModsUsingJEI = ClientInternals.getJeiCompatMods().stream() - .distinct() - .map(ClientHelper.getInstance()::getModFromModId) - .collect(Collectors.toList()); +// this.jeiEnabled = ConfigObject.getInstance().isJEICompatibilityLayerEnabled(); +// allModsUsingJEI = ClientInternals.getJeiCompatMods().stream() +// .distinct() +// .map(ClientHelper.getInstance()::getModFromModId) +// .collect(Collectors.toList()); } } -- cgit