zen-flow 1.7.1 → 1.7.2

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
@@ -159,7 +159,7 @@ const formatArgs = (...args) => {
159
159
  ` : list.join(", ");
160
160
  };
161
161
 
162
- const addCompressor = (recipe) => `mods.avaritia.Compressor.add(${formatArgs(recipe.out, recipe.in[0], recipe.in[1])});`;
162
+ const addCompressor = (recipe) => `mods.avaritia.Compressor.add(${formatArgs(recipe.out, recipe.in[1], recipe.in[0])});`;
163
163
  const removeCompressor = (ingredient) => `mods.avaritia.Compressor.remove(${ingredient});`;
164
164
  const addExtreme = (item, recipe) => {
165
165
  const out = formatArgs(item, recipe.map((row) => formatArgs(row.map(formatIngredient))));
package/dist/zenflow.mjs CHANGED
@@ -155,7 +155,7 @@ const formatArgs = (...args) => {
155
155
  ` : list.join(", ");
156
156
  };
157
157
 
158
- const addCompressor = (recipe) => `mods.avaritia.Compressor.add(${formatArgs(recipe.out, recipe.in[0], recipe.in[1])});`;
158
+ const addCompressor = (recipe) => `mods.avaritia.Compressor.add(${formatArgs(recipe.out, recipe.in[1], recipe.in[0])});`;
159
159
  const removeCompressor = (ingredient) => `mods.avaritia.Compressor.remove(${ingredient});`;
160
160
  const addExtreme = (item, recipe) => {
161
161
  const out = formatArgs(item, recipe.map((row) => formatArgs(row.map(formatIngredient))));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-flow",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "MineTweaker ZenScript made easy.",
5
5
  "main": "dist/zenflow.cjs",
6
6
  "module": "dist/zenflow.mjs",