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 +1 -1
- package/dist/zenflow.mjs +1 -1
- package/package.json +1 -1
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[
|
|
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[
|
|
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))));
|