Skip to content

Commit

Permalink
fix nei (GTNewHorizons#3035)
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Robertz <dream-master@gmx.net>
  • Loading branch information
NotAPenguin0 and Dream-Master authored Sep 3, 2024
1 parent c1ecd20 commit 1f727dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gregtech/common/GTClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
import gregtech.loaders.ExtraIcons;
import gregtech.loaders.misc.GTBees;
import gregtech.loaders.preload.GTPreLoad;
import gregtech.nei.GTNEIConfig;
import gregtech.nei.NEIGTConfig;
import ic2.api.tile.IWrenchable;
import paulscode.sound.SoundSystemConfig;
import paulscode.sound.SoundSystemException;
Expand Down Expand Up @@ -642,7 +642,7 @@ public void onLoad() {
new MetaGeneratedToolRenderer();
new FlaskRenderer();
new FluidDisplayStackRenderer();
MinecraftForge.EVENT_BUS.register(new GTNEIConfig());
MinecraftForge.EVENT_BUS.register(new NEIGTConfig());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import gregtech.nei.dumper.RecipeLockingSupportDumper;
import gregtech.nei.dumper.VoidProtectionSupportDumper;

public class GTNEIConfig implements IConfigureNEI {
public class NEIGTConfig implements IConfigureNEI {

/**
* This map determines the order in which NEI handlers will be registered and displayed in tabs.
Expand Down Expand Up @@ -87,7 +87,7 @@ private void registerHandlers() {
.getNEIProperties().registerNEI)
.map(GTNEIDefaultHandler::new)
.sorted(RECIPE_MAP_HANDLER_COMPARATOR)
.forEach(GTNEIConfig::addHandler);
.forEach(NEIGTConfig::addHandler);
}

private void registerCatalysts() {
Expand Down

0 comments on commit 1f727dd

Please sign in to comment.