From 70317414970dc442e3c080003b4f9967472fd643 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Wed, 10 Jun 2026 04:42:10 +0900 Subject: [PATCH] . --- PHI-CL/data/b/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHI-CL/data/b/main.lua b/PHI-CL/data/b/main.lua index 46d1fff..6d2984c 100644 --- a/PHI-CL/data/b/main.lua +++ b/PHI-CL/data/b/main.lua @@ -75,7 +75,7 @@ function main.EEE(source, tier) if item.energy_source then for _, v in pairs({'buffer_capacity', 'input_flow_limit', 'output_flow_limit'}) do - if not (source.tech == 'compound-energy' and (source.type == 'solar-panel' or source.type == 'accumulator')) and item[v] then + if not (source.tech == 'compound-energy' and (source.type == 'solar-panel' or source.type == 'accumulator')) and item.energy_source[v] then item.energy_source[v] = tonumber(string.match(item.energy_source[v], '[%d%.]+')) * (2 ^ (tier - source.min + 1)) .. string.match(item.energy_source[v], '%a+') end end