zen-flow 7.1.1 → 7.1.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
|
@@ -242,7 +242,7 @@ const addHammer = (id, recipe$1) => {
|
|
|
242
242
|
const items = Object.entries(recipe$1).map((entry) => ({
|
|
243
243
|
id: entry[0],
|
|
244
244
|
chance: object(entry[1]) ? entry[1].n : entry[1],
|
|
245
|
-
modifier: object(entry[1]) ? entry[1].modifier :
|
|
245
|
+
modifier: object(entry[1]) ? entry[1].modifier : 0
|
|
246
246
|
})).flat();
|
|
247
247
|
const out = recipe(
|
|
248
248
|
id,
|
package/dist/zenflow.mjs
CHANGED
|
@@ -240,7 +240,7 @@ const addHammer = (id, recipe$1) => {
|
|
|
240
240
|
const items = Object.entries(recipe$1).map((entry) => ({
|
|
241
241
|
id: entry[0],
|
|
242
242
|
chance: object(entry[1]) ? entry[1].n : entry[1],
|
|
243
|
-
modifier: object(entry[1]) ? entry[1].modifier :
|
|
243
|
+
modifier: object(entry[1]) ? entry[1].modifier : 0
|
|
244
244
|
})).flat();
|
|
245
245
|
const out = recipe(
|
|
246
246
|
id,
|