aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2021-02-21 22:33:45 +0800
committershedaniel <daniel@shedaniel.me>2021-02-21 22:33:45 +0800
commita56baa875630ffac06e421a7389854b5301ed7f0 (patch)
tree9469ff3f61f2aca622d6f86dbe8044769198e639 /runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java
parent5eae235995583e378a884a14118095c1fda08fab (diff)
downloadRoughlyEnoughItems-a56baa875630ffac06e421a7389854b5301ed7f0.tar.gz
RoughlyEnoughItems-a56baa875630ffac06e421a7389854b5301ed7f0.tar.bz2
RoughlyEnoughItems-a56baa875630ffac06e421a7389854b5301ed7f0.zip
More
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java')
-rw-r--r--runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java b/runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java
index 4b1f1cf63..f4a3e454d 100644
--- a/runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java
+++ b/runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java
@@ -24,7 +24,7 @@
package me.shedaniel.rei.gui;
import com.mojang.blaze3d.vertex.PoseStack;
-import me.shedaniel.rei.api.RecipeRegistry;
+import me.shedaniel.rei.api.DisplayRegistry;
import net.minecraft.Util;
import net.minecraft.client.gui.chat.NarratorChatListener;
import net.minecraft.client.gui.screens.Screen;
@@ -49,7 +49,7 @@ public class ConfigReloadingScreen extends Screen {
@Override
public void render(PoseStack matrices, int int_1, int int_2, float float_1) {
this.renderDirtBackground(0);
- if (!RecipeRegistry.getInstance().arePluginsLoading())
+ if (!DisplayRegistry.getInstance().arePluginsLoading())
minecraft.setScreen(parent);
drawCenteredString(matrices, this.font, I18n.get("text.rei.config.is.reloading"), this.width / 2, this.height / 2 - 50, 16777215);
String string_3;