From 9165ac3a43747a8fd38857eee492d9136864a815 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Thu, 19 Mar 2026 21:50:58 +0900 Subject: [PATCH] . --- PHI-CL/data-updates.lua | 10 ---------- PHI-CL/data/u/mbq.lua | 11 +++++++++++ 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/PHI-CL/data-updates.lua b/PHI-CL/data-updates.lua index ac3df27..1c75c88 100644 --- a/PHI-CL/data-updates.lua +++ b/PHI-CL/data-updates.lua @@ -67,13 +67,3 @@ if (settings.startup['PHI-MI'].value and settings.startup['PHI-MI-GENERIC'].valu end end end - -if settings.startup['PHI-MB-EQUIPMENT'].value and settings.startup['PHI-MB-EQUIPMENT-SIZE'].value then - for _, e in pairs({'night-vision-equipment','energy-shield-equipment', 'battery-equipment', 'solar-panel-equipment', 'generator-equipment','active-defense-equipment', 'movement-bonus-equipment', 'roboport-equipment', 'belt-immunity-equipment', 'inventory-bonus-equipment'}) do - if data.raw[e] then - for _, v in pairs(data.raw[e]) do - v.shape = {width = 1, height = 1, type = 'full', points = {{0, 0}}} - end - end - end -end diff --git a/PHI-CL/data/u/mbq.lua b/PHI-CL/data/u/mbq.lua index fed339a..a318817 100644 --- a/PHI-CL/data/u/mbq.lua +++ b/PHI-CL/data/u/mbq.lua @@ -18,3 +18,14 @@ for _, v in pairs(items) do end end end + +-- MBQ C 11 BASE ARMOR_EQUIPMENT +if settings.startup['PHI-MB-EQUIPMENT-SIZE'].value then + for _, e in pairs({'night-vision-equipment', 'energy-shield-equipment', 'battery-equipment', 'solar-panel-equipment', 'generator-equipment','active-defense-equipment', 'movement-bonus-equipment', 'roboport-equipment', 'belt-immunity-equipment', 'inventory-bonus-equipment'}) do + if data.raw[e] then + for _, v in pairs(data.raw[e]) do + v.shape = {width = 1, height = 1, type = 'full', points = {{0, 0}}} + end + end + end +end