zen-flow 16.7.0 → 16.7.1

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.d.ts CHANGED
@@ -2305,7 +2305,7 @@ declare const setAspectEntity: (id: string) => (aspects: Stack[]) => string;
2305
2305
  */
2306
2306
  declare const removeAspectEntity: (id: string) => (aspects: Stack[]) => string;
2307
2307
  type RecipeCrucibleAlchemy = {
2308
- input: Ingredient;
2308
+ input: string;
2309
2309
  output: Ingredient;
2310
2310
  research: string;
2311
2311
  aspects: Stack[];
package/dist/zenflow.js CHANGED
@@ -1362,7 +1362,7 @@ const addCrucibleAlchemy = (recipe$1) => {
1362
1362
  const out = recipe(
1363
1363
  literal(recipe$1.research),
1364
1364
  ingredient(recipe$1.output),
1365
- ingredient(recipe$1.input),
1365
+ recipe$1.input,
1366
1366
  aspects(recipe$1.aspects)
1367
1367
  );
1368
1368
  return `mods.thaumcraft.Crucible.addRecipe(${out});`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-flow",
3
- "version": "16.7.0",
3
+ "version": "16.7.1",
4
4
  "description": "MineTweaker ZenScript made easy.",
5
5
  "type": "module",
6
6
  "exports": {