zen-flow 6.0.1 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zenflow.cjs +2 -2
- package/dist/zenflow.d.ts +2 -5
- package/dist/zenflow.mjs +2 -2
- package/package.json +1 -1
package/dist/zenflow.cjs
CHANGED
|
@@ -612,8 +612,8 @@ const removeSawmill = (id) => `mods.thermalexpansion.Sawmill.removeRecipe(${id})
|
|
|
612
612
|
const addInductionSmelter = (item, recipe) => {
|
|
613
613
|
const out = formatArgs(
|
|
614
614
|
recipe.rf,
|
|
615
|
-
formatIngredient(recipe.input
|
|
616
|
-
formatIngredient(recipe.input
|
|
615
|
+
formatIngredient(recipe.input[1]),
|
|
616
|
+
formatIngredient(recipe.input[0]),
|
|
617
617
|
formatIngredient(item),
|
|
618
618
|
...formatBonus(recipe.bonus)
|
|
619
619
|
);
|
package/dist/zenflow.d.ts
CHANGED
|
@@ -1095,10 +1095,7 @@ declare const addSawmill: (item: Ingredient, recipe: RecipeSawmill) => string;
|
|
|
1095
1095
|
declare const removeSawmill: (id: string) => string;
|
|
1096
1096
|
type RecipeInductionSmelter = {
|
|
1097
1097
|
rf: number;
|
|
1098
|
-
input:
|
|
1099
|
-
left: Ingredient;
|
|
1100
|
-
right: Ingredient;
|
|
1101
|
-
};
|
|
1098
|
+
input: [Ingredient, Ingredient];
|
|
1102
1099
|
bonus?: Bonus;
|
|
1103
1100
|
};
|
|
1104
1101
|
/**
|
|
@@ -1162,7 +1159,7 @@ declare const removeTransposerFill: (input: {
|
|
|
1162
1159
|
type RecipeTransposerExtract = {
|
|
1163
1160
|
rf: number;
|
|
1164
1161
|
input: string;
|
|
1165
|
-
bonus
|
|
1162
|
+
bonus: Bonus;
|
|
1166
1163
|
};
|
|
1167
1164
|
/**
|
|
1168
1165
|
* Add [Fluid Transposer](https://oldcofh.github.io/docs/thermal-expansion/machines/fluid-transposer/) extract recipe
|
package/dist/zenflow.mjs
CHANGED
|
@@ -610,8 +610,8 @@ const removeSawmill = (id) => `mods.thermalexpansion.Sawmill.removeRecipe(${id})
|
|
|
610
610
|
const addInductionSmelter = (item, recipe) => {
|
|
611
611
|
const out = formatArgs(
|
|
612
612
|
recipe.rf,
|
|
613
|
-
formatIngredient(recipe.input
|
|
614
|
-
formatIngredient(recipe.input
|
|
613
|
+
formatIngredient(recipe.input[1]),
|
|
614
|
+
formatIngredient(recipe.input[0]),
|
|
615
615
|
formatIngredient(item),
|
|
616
616
|
...formatBonus(recipe.bonus)
|
|
617
617
|
);
|