mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-05-13 05:08:44 +09:00
b45c0850e0
Co-authored-by: Copilot <copilot@github.com>
20 lines
548 B
Lua
20 lines
548 B
Lua
local param = require 'config'
|
|
|
|
if settings.startup['PHI-MB'].value then
|
|
if settings.startup['PHI-MB-ENERGY'].value then
|
|
require 'data.u.mbe'
|
|
end
|
|
|
|
if settings.startup['PHI-MB-MACHINE'].value then
|
|
require 'data.u.mbm'
|
|
end
|
|
|
|
if settings.startup['PHI-MB-EQUIPMENT'].value then
|
|
require 'data.u.mbq'
|
|
end
|
|
end
|
|
|
|
if (settings.startup['PHI-MI'].value and settings.startup['PHI-MI-GENERIC'].value) or (settings.startup['PHI-GM'].value and settings.startup['PHI-GM'].value ~= '') then
|
|
require 'data.u.mi'
|
|
end
|