diff options
Diffstat (limited to 'src/functionalTest/java/kubatech/test/kubatechTestMod.java')
-rw-r--r-- | src/functionalTest/java/kubatech/test/kubatechTestMod.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/functionalTest/java/kubatech/test/kubatechTestMod.java b/src/functionalTest/java/kubatech/test/kubatechTestMod.java index bc68d3f203..5f0225d0ee 100644 --- a/src/functionalTest/java/kubatech/test/kubatechTestMod.java +++ b/src/functionalTest/java/kubatech/test/kubatechTestMod.java @@ -25,7 +25,7 @@ import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.event.FMLServerStartedEvent; -import gregtech.GT_Mod; +import gregtech.GTMod; @Mod( modid = "kubatech-tests", @@ -37,8 +37,8 @@ public class kubatechTestMod { @EventHandler public void preInit(FMLPreInitializationEvent ev) { // Disable GT5u messing with vanilla recipes for unit tests - GT_Mod.gregtechproxy.mNerfedWoodPlank = false; - GT_Mod.gregtechproxy.mNerfedVanillaTools = false; + GTMod.gregtechproxy.mNerfedWoodPlank = false; + GTMod.gregtechproxy.mNerfedVanillaTools = false; } @EventHandler |