From d37959345be97a7e35d38ed3bd10a62933f2d2ea Mon Sep 17 00:00:00 2001 From: "Marty E. Plummer" Date: Wed, 19 Jun 2019 03:09:42 -0500 Subject: scripts: disable all but zinc armor forge Signed-off-by: Marty E. Plummer Signed-off-by: Thomas Groman --- .minecraft/scripts/conarm.zs | 10 ++++++++++ .minecraft/scripts/tinkersConstruct.zs | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .minecraft/scripts/conarm.zs diff --git a/.minecraft/scripts/conarm.zs b/.minecraft/scripts/conarm.zs new file mode 100644 index 0000000..1f620b2 --- /dev/null +++ b/.minecraft/scripts/conarm.zs @@ -0,0 +1,10 @@ +#Name: tinkersConstruct.zs +#Author: Feed the Beast + +print("Initializing 'conarm.zs'..."); + +#armor forge +recipes.remove(); +mods.techreborn.rollingMachine.addShaped(.withTag({textureBlock: {id: "techreborn:storage", Count: 1 as byte, Damage: 8 as short}}), [[, , ], [, , ], [, null, ]]); + +print("Initialized 'conarm.zs'"); diff --git a/.minecraft/scripts/tinkersConstruct.zs b/.minecraft/scripts/tinkersConstruct.zs index 2ec3b59..ad6d7a1 100644 --- a/.minecraft/scripts/tinkersConstruct.zs +++ b/.minecraft/scripts/tinkersConstruct.zs @@ -15,7 +15,7 @@ recipes.remove(); #tool forge recipes.remove(); -mods.techreborn.rollingMachine.addShaped(.withTag({textureBlock: {id: "techreborn:storage", Count: 1 as byte, Damage: 8 as short}}), [[, , ], [, null, ], [, null, ]]); +mods.techreborn.rollingMachine.addShaped(.withTag({textureBlock: {id: "techreborn:storage", Count: 1 as byte, Damage: 8 as short}}), [[, , ], [, , ], [, null, ]]); #grout recipes.remove(); @@ -83,4 +83,4 @@ mods.tconstruct.Drying.removeRecipe(); #remove copper casing from smeltery mods.tconstruct.Melting.removeRecipe(, ); -print("Initialized 'tinkersConstruct.zs'"); \ No newline at end of file +print("Initialized 'tinkersConstruct.zs'"); -- cgit v1.2.3