From 745e10fda0afe232dc5cd740c4925a3933b98e8d Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Fri, 11 Jul 2025 17:46:59 +0900 Subject: [PATCH] . --- PHI-CL/control.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PHI-CL/control.lua b/PHI-CL/control.lua index 99971c4..29f2702 100644 --- a/PHI-CL/control.lua +++ b/PHI-CL/control.lua @@ -312,10 +312,10 @@ if settings.startup['PHI-MI'].value or (settings.startup['PHI-GM'].value and set for _, r in pairs(game.forces['player'].research_queue) do if r.name and r.level and r.research_unit_count_formula then if storage.phi_cl.combinator.research_queue[n] then - storage.phi_cl.combinator.research_queue[n].value = storage.phi_cl.combinator.research_queue[n].value + math.pow(2, n + 8) + storage.phi_cl.combinator.research_queue[n].value = storage.phi_cl.combinator.research_queue[n].value + math.pow(2, n - 1) else - storage.phi_cl.combinator.research_queue[n] = {name = r.name, value = math.pow(2, n + 8)} + storage.phi_cl.combinator.research_queue[n] = {name = r.name, value = math.pow(2, n - 1)} end end