Skip to content

Commit

Permalink
fix(recipes): ✏️return some accidentally removed [Precision Assembler…
Browse files Browse the repository at this point in the history
…] recipes

For example [Wyvern Core]
  • Loading branch information
Krutoy242 committed Jul 15, 2023
1 parent c311be3 commit 0d32a05
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
10 changes: 0 additions & 10 deletions scripts/mods/forestry/Carpenter.zs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ function addRecipe(
altMaxMult as int = 64
) as void {
mods.forestry.Carpenter.addRecipe(output, ingredients, packagingTime, fluidInput, box);
if (!utils.DEBUG) return;
addAltRecipe(output, ingredients, packagingTime, fluidInput, box, altMaxMult);
}

Expand Down Expand Up @@ -104,12 +103,3 @@ addAltRecipe(<minecraft:paper> , [[<thermalfoundation:mate
// addAltRecipe(<thermalfoundation:material:163> * 2 , [[null, null, null], [null, <forestry:broken_bronze_pickaxe>, null], [null, null, null]], 100);
addAltRecipe(<thermalfoundation:material:800> , [[<ore:logWood>, null, null], [null, null, null], [null, null, null]], 100, <fluid:water> * 250);
/**/

mods.advancedrocketry.RecipeTweaker.forMachine('PrecisionAssembler')
.builder()
.input(<ore:ingotBronze> * 3)
.input(<ore:stickWood> * 2)
.outputs(<forestry:kit_pickaxe>)
.power(20000)
.timeRequired(5)
.build();
1 change: 0 additions & 1 deletion scripts/mods/forestry/ThermionicFabricator.zs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ function addCast(
) as void {
//mods.forestry.ThermionicFabricator.addCast(IItemStack output, IIngredient[][] ingredients, ILiquidStack liquidStack, @Optional IItemStack plan);
mods.forestry.ThermionicFabricator.addCast(output, ingredients, fluidInput, box);
if (!utils.DEBUG) return;
addAltRecipe(output, ingredients, fluidInput, box, altMaxMult);
}

Expand Down

0 comments on commit 0d32a05

Please sign in to comment.