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
3 days ago
2.0
7.33K
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

6 days ago
(updated 6 days 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

6 days ago
(updated 6 days ago)

Deleted (submitted in mistake)

5 days ago

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

4 days ago
(updated 3 days ago)

Fixed for 1.2.67.

e: Not entirely working.

13 hours 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__(.+)")

New response