diff options
| author | Martin Robertz <dream-master@gmx.net> | 2023-04-10 16:02:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-10 16:02:56 +0200 |
| commit | 5d15115087ff3d38c5f0e30401f96eb3ac2c79f1 (patch) | |
| tree | a262f6acdbe6456f0f551f105facf4e1b64bf483 | |
| parent | 8826d8c393ececd64bd11c4601acd384ff234147 (diff) | |
| parent | 3b8e8779d06b30d94e304d0df0263919c868fb13 (diff) | |
| download | GT5-Unofficial-5d15115087ff3d38c5f0e30401f96eb3ac2c79f1.tar.gz GT5-Unofficial-5d15115087ff3d38c5f0e30401f96eb3ac2c79f1.tar.bz2 GT5-Unofficial-5d15115087ff3d38c5f0e30401f96eb3ac2c79f1.zip | |
Merge pull request #185 from GTNewHorizons/cleanup
Cleanup
98 files changed, 7755 insertions, 11419 deletions
diff --git a/dependencies.gradle b/dependencies.gradle index 6f613e9d7d..eae54a6f7d 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -2,7 +2,7 @@ dependencies { shadowImplementation('com.github.GTNewHorizons:AVRcore:1.0.1') - api("com.github.GTNewHorizons:GT5-Unofficial:5.09.42.09:dev") + api("com.github.GTNewHorizons:GT5-Unofficial:5.09.42.49:dev") api('com.github.GTNewHorizons:Yamcl:0.5.84:dev') api('com.github.GTNewHorizons:ModularUI:1.0.67:dev') implementation('com.github.GTNewHorizons:GTNEIOrePlugin:1.0.27:dev') diff --git a/src/main/java/com/github/technus/tectech/Reference.java b/src/main/java/com/github/technus/tectech/Reference.java index 2db595d5c2..e343b9fc77 100644 --- a/src/main/java/com/github/technus/tectech/Reference.java +++ b/src/main/java/com/github/technus/tectech/Reference.java @@ -1,19 +1,15 @@ package com.github.technus.tectech; +import gregtech.api.enums.Mods; + public final class Reference { - public static final String MODID = "tectech"; + public static final String MODID = Mods.Names.TECTECH; public static final String NAME = "TecTech - Tec Technology!"; public static final String VERSION = "GRADLETOKEN_VERSION"; public static final String COLLECTIONNAME = "TecTech"; public static final String CLIENTSIDE = "com.github.technus.tectech.proxy.ClientProxy"; public static final String SERVERSIDE = "com.github.technus.tectech.proxy.CommonProxy"; - public static final String COFHCORE = "CoFHCore"; - public static final String THAUMCRAFT = "Thaumcraft"; - public static final String DREAMCRAFT = "dreamcraft"; - public static final String GTPLUSPLUS = "miscutils"; - public static final String SPARTAKCORE = "spartakcore"; - private Reference() {} } diff --git a/src/main/java/com/github/technus/tectech/TecTech.java b/src/main/java/com/github/technus/tectech/TecTech.java index 17b5c88828..ae49064f64 100644 --- a/src/main/java/com/github/technus/tectech/TecTech.java +++ b/src/main/java/com/github/technus/tectech/TecTech.java @@ -1,6 +1,7 @@ package com.github.technus.tectech; import static com.github.technus.tectech.loader.TecTechConfig.DEBUG_MODE; +import static gregtech.api.enums.Mods.COFHCore; import java.lang.reflect.Field; import java.lang.reflect.Modifier; @@ -32,10 +33,14 @@ import com.github.technus.tectech.recipe.EyeOfHarmonyRecipeStorage; import com.github.technus.tectech.util.XSTR; import cpw.mods.fml.common.FMLCommonHandler; -import cpw.mods.fml.common.Loader; import cpw.mods.fml.common |
