mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-03-28 12:24:39 +09:00
.
This commit is contained in:
@@ -1,16 +1,11 @@
|
|||||||
---------------------------------------------------------------------------------------------------
|
|
||||||
Version: 3.0.136
|
|
||||||
Date: 2026-04-12
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
- [MI] Generic code layout restructure.
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 3.0.135
|
Version: 3.0.135
|
||||||
Date: 2026-04-05
|
Date: 2026-04-05
|
||||||
|
|
||||||
Changes:
|
Changes:
|
||||||
|
- [MB] Generic code layout restructure.
|
||||||
- [CT] Generic code layout restructure.
|
- [CT] Generic code layout restructure.
|
||||||
|
- [MI] Generic code layout restructure.
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 3.0.134
|
Version: 3.0.134
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ for _, v in pairs(items) do
|
|||||||
v.mod = v.mod or 'base'
|
v.mod = v.mod or 'base'
|
||||||
v.min = v.min or 2
|
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.category = v.category or 'item'
|
||||||
v.ref_name = v.ref_name or v.name
|
v.ref_name = v.ref_name or v.name
|
||||||
|
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ for _, v in pairs(items) do
|
|||||||
v.mod = v.mod or 'base'
|
v.mod = v.mod or 'base'
|
||||||
v.min = v.min or 2
|
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.category = 'equipment'
|
||||||
v.ref_name = v.ref_name or v.name .. '-equipment'
|
v.ref_name = v.ref_name or v.name .. '-equipment'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user