mirror of
https://github.com/peter-tanner/factorio-shortcuts.git
synced 2024-12-02 20:20:20 +08:00
10 lines
309 B
Lua
10 lines
309 B
Lua
require("shortcuts")
|
|
data.raw["recipe"]["artillery-targeting-remote"].hidden = true
|
|
local effect = data.raw["technology"]["artillery"].effects
|
|
for i=1,(#effect),1 do
|
|
if effect[i].type == "unlock-recipe" then
|
|
if effect[i].recipe == "artillery-targeting-remote" then
|
|
table.remove(effect, i)
|
|
end
|
|
end
|
|
end |