zen-flow 2.6.4 → 2.6.6
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 +1 -1
- package/dist/zenflow.d.ts +1 -1
- package/dist/zenflow.mjs +1 -1
- package/package.json +1 -1
package/dist/zenflow.cjs
CHANGED
|
@@ -363,7 +363,7 @@ const removeFurnace = (recipe) => {
|
|
|
363
363
|
return `furnace.remove(<*>, ${recipe});`;
|
|
364
364
|
return `furnace.remove(${formatArgs(recipe.out, recipe.in)});`;
|
|
365
365
|
};
|
|
366
|
-
const addFurnaceFuel = (id, n) => `furnace.setFuel(${formatArgs(id, n)})
|
|
366
|
+
const addFurnaceFuel = (id, n) => `furnace.setFuel(${formatArgs(id, n)});`;
|
|
367
367
|
const removeFurnaceFuel = (id) => addFurnaceFuel(id, 0);
|
|
368
368
|
const replace = (ingredient, recipe) => {
|
|
369
369
|
const id = isObject(ingredient) ? ingredient.id : ingredient;
|
package/dist/zenflow.d.ts
CHANGED
package/dist/zenflow.mjs
CHANGED
|
@@ -359,7 +359,7 @@ const removeFurnace = (recipe) => {
|
|
|
359
359
|
return `furnace.remove(<*>, ${recipe});`;
|
|
360
360
|
return `furnace.remove(${formatArgs(recipe.out, recipe.in)});`;
|
|
361
361
|
};
|
|
362
|
-
const addFurnaceFuel = (id, n) => `furnace.setFuel(${formatArgs(id, n)})
|
|
362
|
+
const addFurnaceFuel = (id, n) => `furnace.setFuel(${formatArgs(id, n)});`;
|
|
363
363
|
const removeFurnaceFuel = (id) => addFurnaceFuel(id, 0);
|
|
364
364
|
const replace = (ingredient, recipe) => {
|
|
365
365
|
const id = isObject(ingredient) ? ingredient.id : ingredient;
|