From 9b0cf70949beab972a7f9b2e6884dc9eb4cb8dca Mon Sep 17 00:00:00 2001 From: boubou19 Date: Tue, 4 Apr 2023 13:57:15 +0200 Subject: Modid work (#1833) * add all mods founds in NHCore * depracte old strings * add ars magica 2 * more enum work * use a switch * spotless * more mod id rework * more mod id rework * more mod id rework * should be last * spotless * rename to make more sense * add path attribute * add getResourcePath to enum * spotless --- src/main/java/gregtech/client/GT_GUI_ClientConfig.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main/java/gregtech/client') diff --git a/src/main/java/gregtech/client/GT_GUI_ClientConfig.java b/src/main/java/gregtech/client/GT_GUI_ClientConfig.java index cf9b2fd8f9..2a2c321fc7 100644 --- a/src/main/java/gregtech/client/GT_GUI_ClientConfig.java +++ b/src/main/java/gregtech/client/GT_GUI_ClientConfig.java @@ -1,5 +1,7 @@ package gregtech.client; +import static gregtech.api.enums.Mods.GregTech; + import java.util.List; import java.util.Map; import java.util.stream.Collectors; @@ -20,7 +22,7 @@ public class GT_GUI_ClientConfig extends GuiConfig { super( parentScreen, getConfigElements(), - "gregtech", + GregTech.ID, "client", false, false, -- cgit