From dc256c13aad2070bd617dd4ffc7744c81700ba30 Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Fri, 11 Oct 2024 11:53:23 +1100 Subject: [PATCH] Fix Vibrant Jetpack Recipe (#1055) [BUG] --- overrides/scripts/JetpacksAndEnergyStorage.zs | 2 +- overrides/scripts/common.zs | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/overrides/scripts/JetpacksAndEnergyStorage.zs b/overrides/scripts/JetpacksAndEnergyStorage.zs index 093c832..b009bd4 100644 --- a/overrides/scripts/JetpacksAndEnergyStorage.zs +++ b/overrides/scripts/JetpacksAndEnergyStorage.zs @@ -199,7 +199,7 @@ recipes.addShaped(reinforcedjetpack, [ //Vibrant Alloy Jetpack recipes.removeByRecipeName("simplyjetpacks:upgraderecipe4"); recipes.addShaped(vibrantjetpack, [ - [, compressedoctadiccap, ], + [, , ], [, energeticjetpack.marked("jetpack"), ], [, null, ]], transferTag); diff --git a/overrides/scripts/common.zs b/overrides/scripts/common.zs index 54333f2..448fcc0 100644 --- a/overrides/scripts/common.zs +++ b/overrides/scripts/common.zs @@ -42,10 +42,6 @@ global reinforcedcellIng as IIngredient = reinforcedcell.only(isReinforced); global signalumcellIng as IIngredient = signalumcell.only(isSignalum); global resonantcellIng as IIngredient = resonantcell.only(isResonant); -// Compressed capacitors -global compressedoctadiccap as IItemStack = .withTag({display: {Name: "Compressed Octadic RF Capacitor", Lore: ["This is what is known as a Compressed Octadic Capacitor.", "Or, you could just call this an Octadic Capacitor Two.", "Can be inserted into EnderIO machines.", "Level: 4"]}, eiocap: {level: 4 as float}}, false); -global doublecompressedoctadiccap as IItemStack = .withTag({display: {Name: "Double Compressed Octadic RF Capacitor", Lore: ["AND THIS IS TO GO EVEN FURTHER BEYOND!", "Can be inserted into EnderIO machines.", "Level: 9.001", "Just kidding, it's only 5."]}, eiocap: {level: 5 as float}}, false); - // EIO Jetpacks global conductiveironjetpack as IItemStack = .withTag({Energy: 0, JetpackParticleType: 0}, false); global electricalsteeljetpack as IItemStack = .withTag({Energy: 0, JetpackParticleType: 0}, false);