-
Notifications
You must be signed in to change notification settings - Fork 27
/
data-final-fixes.lua
33 lines (30 loc) · 1.36 KB
/
data-final-fixes.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
if mods["stack-combinator"] then
data.raw.technology["stack-combinator"].enabled = false
end
if mods["RenaiTransportation"] then
require("updates.compatibility.renai_transportation_mystery")
end
-- Ensure other mods haven't messed with some important settings.
data.raw["electric-pole"]["cube-local-turbine-source"].maximum_wire_distance = 0
data.raw["electric-pole"]["cube-local-turbine-transmitter"].maximum_wire_distance = 0
-- Make sure items can be sent automatically in the teleporter.
for type, _ in pairs(defines.prototypes.item) do
for _, item in pairs(data.raw[type] or {}) do
--item.rocket_launch_products = {{type = "item", name = "space-science-pack", amount = 0}}
item.send_to_orbit_mode = "automated"
end
end
data.raw.item["cube-residual-tendrils"].rocket_launch_products = {{type = "item", name = "cube-residual-tendrils", amount = 100}}
local replacement_techs = {
["circuit-network"] = "cube-combinatorics",
["construction-robotics"] = "cube-construction-robotics",
["personal-roboport-equipment"] = "cube-personal-roboport-equipment",
["exoskeleton-equipment"] = "cube-exoskeleton-equipment",
["electronics"] = "cube-electronics",
["spidertron"] = "cube-spidertron",
}
for _, v in pairs(data.raw.shortcut) do
if replacement_techs[v.technology_to_unlock] then
v.technology_to_unlock = replacement_techs[v.technology_to_unlock]
end
end