aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/GT_Mod.java
diff options
context:
space:
mode:
authorDavid Lindström <info@davidlindstrom.se>2023-01-20 09:27:42 +0100
committerGitHub <noreply@github.com>2023-01-20 09:27:42 +0100
commit750a4070af4756e3708e2b2555b9874864bf3cfb (patch)
tree29f029934a68871d7dd35592a1b952af995bf10e /src/main/java/gregtech/GT_Mod.java
parentc7f1646f4b473359d270d55e4dc54cb1f4e7a64b (diff)
downloadGT5-Unofficial-750a4070af4756e3708e2b2555b9874864bf3cfb.tar.gz
GT5-Unofficial-750a4070af4756e3708e2b2555b9874864bf3cfb.tar.bz2
GT5-Unofficial-750a4070af4756e3708e2b2555b9874864bf3cfb.zip
Add Hazmat enchant to add Full Hazmat protection to an arbitrary armor item (#1663)
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r--src/main/java/gregtech/GT_Mod.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java
index 9dd563c701..e38f4f0d02 100644
--- a/src/main/java/gregtech/GT_Mod.java
+++ b/src/main/java/gregtech/GT_Mod.java
@@ -20,6 +20,7 @@ import cpw.mods.fml.common.event.FMLServerStoppingEvent;
import cpw.mods.fml.common.registry.EntityRegistry;
import gregtech.api.GregTech_API;
import gregtech.api.enchants.Enchantment_EnderDamage;
+import gregtech.api.enchants.Enchantment_Hazmat;
import gregtech.api.enchants.Enchantment_Radioactivity;
import gregtech.api.enums.ConfigCategories;
import gregtech.api.enums.Element;
@@ -231,6 +232,7 @@ public class GT_Mod implements IGT_Mod {
GT_PreLoad.loadConfig(tMainConfig);
+ new Enchantment_Hazmat();
new Enchantment_EnderDamage();
new Enchantment_Radioactivity();