diff options
author | GlodBlock <60341015+GlodBlock@users.noreply.github.com> | 2021-04-16 21:48:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 21:48:21 +0800 |
commit | 5dcc47fb4fcc0c176e03bd40fdafe79d54eb438a (patch) | |
tree | b517d25b1ca8b03cf8ee0804de636dc4b9e022ab | |
parent | cdfb397d484cbb7bef47067e4604b64a4794b64f (diff) | |
download | GT5-Unofficial-5dcc47fb4fcc0c176e03bd40fdafe79d54eb438a.tar.gz GT5-Unofficial-5dcc47fb4fcc0c176e03bd40fdafe79d54eb438a.tar.bz2 GT5-Unofficial-5dcc47fb4fcc0c176e03bd40fdafe79d54eb438a.zip |
add the new craft item
-rw-r--r-- | src/main/java/GoodGenerator/Loader/Loaders.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/GoodGenerator/Loader/Loaders.java b/src/main/java/GoodGenerator/Loader/Loaders.java index 086e16eabd..68cdfcf0ba 100644 --- a/src/main/java/GoodGenerator/Loader/Loaders.java +++ b/src/main/java/GoodGenerator/Loader/Loaders.java @@ -6,13 +6,14 @@ import GoodGenerator.Items.MyItemBlocks; import GoodGenerator.Items.MyItems; import GoodGenerator.Main.GoodGenerator; import cpw.mods.fml.common.registry.GameRegistry; -import gregtech.api.enums.GT_Values; import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; public class Loaders { + public static final Item radiationProtectionPlate = new MyItems("radiationProtectionPlate",GoodGenerator.GG); + public static final Block MAR_Casing = new Casing("MAR_Casing",new String[]{ GoodGenerator.MOD_ID+":MAR_Casing", }); @@ -20,8 +21,7 @@ public class Loaders { public static void Register(){ GameRegistry.registerBlock(MAR_Casing, MyItemBlocks.class,"MAR_Casing"); - + GameRegistry.registerItem(radiationProtectionPlate,"radiationProtectionPlate",GoodGenerator.MOD_ID); Loaders.MAR = new MultiNqGenerator(12732,"NaG","great naquadah reactor").getStackForm(1L); - } } |