zen-flow 2.3.2 → 2.3.3

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
@@ -168,7 +168,7 @@ const addGrinder = (recipe) => {
168
168
  const out = formatArgs(formatIngredient(recipe.in), formatIngredient(recipe.out), recipe.turns, recipe.bonus && formatBonus(recipe.bonus.primary), recipe.bonus?.secondary && formatBonus(recipe.bonus.secondary));
169
169
  return `mods.appeng.Grinder.addRecipe(${out});`;
170
170
  };
171
- const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id})`;
171
+ const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id});`;
172
172
  const addInscriber = (recipe) => {
173
173
  const out = formatArgs([formatIngredient(recipe.in)], recipe.plate.top, recipe.plate.bottom, formatIngredient(recipe.out), capitalize(recipe.type));
174
174
  return `mods.appeng.Inscriber.addRecipe(${out});`;
package/dist/zenflow.mjs CHANGED
@@ -164,7 +164,7 @@ const addGrinder = (recipe) => {
164
164
  const out = formatArgs(formatIngredient(recipe.in), formatIngredient(recipe.out), recipe.turns, recipe.bonus && formatBonus(recipe.bonus.primary), recipe.bonus?.secondary && formatBonus(recipe.bonus.secondary));
165
165
  return `mods.appeng.Grinder.addRecipe(${out});`;
166
166
  };
167
- const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id})`;
167
+ const removeGrinder = (id) => `mods.appeng.Grinder.removeRecipe(${id});`;
168
168
  const addInscriber = (recipe) => {
169
169
  const out = formatArgs([formatIngredient(recipe.in)], recipe.plate.top, recipe.plate.bottom, formatIngredient(recipe.out), capitalize(recipe.type));
170
170
  return `mods.appeng.Inscriber.addRecipe(${out});`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-flow",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "MineTweaker ZenScript made easy.",
5
5
  "main": "dist/zenflow.cjs",
6
6
  "module": "dist/zenflow.mjs",