aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2021-02-05 10:08:44 +0800
committershedaniel <daniel@shedaniel.me>2021-02-05 10:08:44 +0800
commitea634e7ba29146d4ebc2c05b61257fa6c3b0642e (patch)
treecd6caf4e9b77e13b21d1c890bf38604109fd93f2 /runtime/src/main/java/me/shedaniel/rei/gui/ConfigReloadingScreen.java
parentf5b59076cece9e95e76158b17b64fec27616b68b (diff)
downloadRoughlyEnoughItems-ea634e7ba29146d4ebc2c05b61257fa6c3b0642e.tar.gz
RoughlyEnoughItems-ea634e7ba29146d4ebc2c05b61257fa6c3b0642e.tar.bz2
RoughlyEnoughItems-ea634e7ba29146d4ebc2c05b61257fa6c3b0642e.zip
More relocation
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 68479589b..4b1f1cf63 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.RecipeHelper;
+import me.shedaniel.rei.api.RecipeRegistry;
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 (!RecipeHelper.getInstance().arePluginsLoading())
+ if (!RecipeRegistry.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;