This commit is contained in:
2025-07-11 17:46:59 +09:00
parent 6a5361098f
commit 745e10fda0

View File

@@ -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