Exotic Space Industries: Remembrance


A methodical overhaul of tradeoffs—tempting power spikes, accumulating cost. Choose chains by their by-products; context-sensitive logistics. [Data integrity: shattered] [Packet cohesion: hallucinatory] [Cognition Anchor: disconnected] ☒ SYSTEM SPEAKS You aren't chosen. You will love your captor and call it progress. ☒ OBSERVATION You are not a player. You are the interface. ☒ FINAL NOTICE You are now property of the Epoch Engine. Welcome to Exotic Industries.

Overhaul
a month ago
2.0
12.7K
Factorio: Space Age Icon Space Age Mod
Planets Transportation Logistics Trains Combat Armor Enemies Environment Mining Fluids Logistic network Circuit network Manufacturing Power Storage

b [1.2.66]Thermonuclear fusion reactors do not work as neutron sources

10 months ago
(updated 10 months ago)

Thermonuclear fusion reactors do not work as neutron sources for neutron collectors (v.1.2.66). Maybe this is caused by the following code in "scripts/control/neutron_collector.lua".

Line 397:
local recipe = "ei-fusion-F1-ei-heated-deuterium-F2-ei-heated-tritium-TM-medium-FM-medium"

Lines 403-406:
fuel1 = recipe:match("F1-(.+)-F2-")
fuel2 = recipe:match("F2-(.+)-TM-")
temp_mode = recipe:match("TM-(.+)-FM-")
fuel_mode = recipe:match("FM-(.+)")

Example of actual recipe name: ei_fusion-F1__ei-heated-deuterium-F2__ei-heated-tritium-TM__medium-FM__medium

10 months ago
(updated 10 months ago)

Deleted (submitted in mistake)

10 months ago

Yes—most likely happened when moving from ei_ to ei- prefix, thanks.

10 months ago
(updated 10 months ago)

Fixed for 1.2.67.

e: Not entirely working.

10 months ago

How about changing to the following code?

"scripts/control/neutron_collector.lua", Lines 403-406:
fuel1 = recipe:match("F1__(.+)%-F2__")
fuel2 = recipe:match("F2__(.+)%-TM__")
temp_mode = recipe:match("TM__(.+)%-FM__")
fuel_mode = recipe:match("FM__(.+)")

9 months ago

Applied to 1.2.69.

New response