zen-flow 13.2.0 → 13.3.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 CHANGED
@@ -272,7 +272,7 @@ const addCarpenter = (recipe$1) => {
272
272
  const out = recipe(
273
273
  ingredient(recipe$1.output),
274
274
  shaped(recipe$1.input),
275
- recipe$1.liquid && stack(recipe$1.liquid),
275
+ recipe$1.liquid && liquid(recipe$1.liquid),
276
276
  Math.max(1, Math.round(recipe$1.ticks)),
277
277
  recipe$1.top
278
278
  );
@@ -402,7 +402,7 @@ type RecipeCarpenter = {
402
402
  output: Ingredient;
403
403
  ticks: number;
404
404
  top?: string;
405
- liquid?: Stack;
405
+ liquid?: Liquid;
406
406
  };
407
407
  /**
408
408
  * Add [Carpenter](https://feed-the-beast.fandom.com/wiki/Carpenter) recipe
@@ -402,7 +402,7 @@ type RecipeCarpenter = {
402
402
  output: Ingredient;
403
403
  ticks: number;
404
404
  top?: string;
405
- liquid?: Stack;
405
+ liquid?: Liquid;
406
406
  };
407
407
  /**
408
408
  * Add [Carpenter](https://feed-the-beast.fandom.com/wiki/Carpenter) recipe
package/dist/zenflow.mjs CHANGED
@@ -270,7 +270,7 @@ const addCarpenter = (recipe$1) => {
270
270
  const out = recipe(
271
271
  ingredient(recipe$1.output),
272
272
  shaped(recipe$1.input),
273
- recipe$1.liquid && stack(recipe$1.liquid),
273
+ recipe$1.liquid && liquid(recipe$1.liquid),
274
274
  Math.max(1, Math.round(recipe$1.ticks)),
275
275
  recipe$1.top
276
276
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-flow",
3
- "version": "13.2.0",
3
+ "version": "13.3.0",
4
4
  "description": "MineTweaker ZenScript made easy.",
5
5
  "main": "dist/zenflow.cjs",
6
6
  "module": "dist/zenflow.mjs",