This commit is contained in:
2026-03-27 23:38:42 +09:00
parent d60da1e08b
commit 0c8bc57fda
3 changed files with 4 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ for _, v in pairs(items) do
v.mod = v.mod or 'base'
v.min = v.min or 2
if v.enabled and (v.mod and mods[v.mod]) and (v.max >= v.min) then
if (v.mod and mods[v.mod]) and (v.max >= v.min) then
v.category = v.category or 'item'
v.ref_name = v.ref_name or v.name

View File

@@ -105,7 +105,7 @@ for _, v in pairs(items) do
v.mod = v.mod or 'base'
v.min = v.min or 2
if v.enabled and (v.mod and mods[v.mod]) and (v.max >= v.min) then
if (v.mod and mods[v.mod]) and (v.max >= v.min) then
v.category = 'equipment'
v.ref_name = v.ref_name or v.name .. '-equipment'