This commit is contained in:
2026-05-01 02:18:35 +09:00
parent c4b30811f5
commit f7d61859c8
7 changed files with 22 additions and 24 deletions
+10 -10
View File
@@ -1,43 +1,43 @@
if settings.startup['PHI-MB'].value then
if settings.startup['PHI-MB-ENERGY'].value then
require 'data.b.mbe'
require('data.b.mbe')
end
if settings.startup['PHI-MB-MACHINE'].value then
require 'data.b.mbm'
require('data.b.mbm')
end
if settings.startup['PHI-MB-EQUIPMENT'].value then
require 'data.b.mbq'
require('data.b.mbq')
end
end
if settings.startup['PHI-CT'].value then
require 'data.b.ct'
require('data.b.ct')
end
if settings.startup['PHI-MI'].value then
require 'data.b.mi'
require('data.b.mi')
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.b.mig'
require('data.b.mig')
end
if mods['space-age'] then
require 'data.b.sa'
require('data.b.sa')
if settings.startup['PHI-GM'].value and settings.startup['PHI-GM'].value ~= '' then
require 'data.b.gm'
require('data.b.gm')
end
end
if settings.startup['PHI-GM'].value then
if settings.startup['PHI-GM'].value == 'SAP' then
require 'data.b.gm-sap'
require('data.b.gm-sap')
elseif settings.startup['PHI-GM'].value == 'VP' then
require 'data.b.gm-vp'
require('data.b.gm-vp')
end
end