aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle.kts3
-rw-r--r--src/main/java/com/github/technus/tectech/loader/MainLoader.java9
2 files changed, 7 insertions, 5 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 04935c1158..864d19e399 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -6,8 +6,9 @@ import java.io.*
buildscript {
repositories {
mavenCentral()
- maven("http://files.minecraftforge.net/maven")
+ maven("https://gregtech.overminddl1.com/")
maven("https://jitpack.io")
+
}
dependencies {
classpath("com.github.GTNH2:ForgeGradle:FG_1.2-SNAPSHOT")
diff --git a/src/main/java/com/github/technus/tectech/loader/MainLoader.java b/src/main/java/com/github/technus/tectech/loader/MainLoader.java
index d473da6b07..4b812e3e23 100644
--- a/src/main/java/com/github/technus/tectech/loader/MainLoader.java
+++ b/src/main/java/com/github/technus/tectech/loader/MainLoader.java
@@ -149,9 +149,10 @@ public final class MainLoader {
new RecipeLoader().run();
TecTech.LOGGER.info("Recipe Init Done");
- progressBarPostLoad.step("Register Extra Hazmat Suits");
- registerExtraHazmats();
- TecTech.LOGGER.info("Hazmat additions done");
+ //Hazmat moved to GT5U
+ //progressBarPostLoad.step("Register Extra Hazmat Suits");
+ //registerExtraHazmats();
+ //TecTech.LOGGER.info("Hazmat additions done");
if (!configTecTech.DISABLE_BLOCK_HARDNESS_NERF) {
progressBarPostLoad.step("Nerf blocks blast resistance");
@@ -169,7 +170,7 @@ public final class MainLoader {
ProgressManager.pop(progressBarPostLoad);
}
- private static void registerExtraHazmats() {
+ private static void registerExtraHazmats() { //Hazmat moved to GT5U
ItemStack EMT_iqC=GT_ModHandler.getModItem("EMT","itemArmorQuantumChestplate",1,W);
ItemStack GRAVI_gC=GT_ModHandler.getModItem("GraviSuite","graviChestPlate",1,W);
ItemStack GRAVI_anC=GT_ModHandler.getModItem("GraviSuite", "advNanoChestPlate", 1, W);