1
0
This repository has been archived on 2023-04-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
IndustrialDisplayPlates-Arc…/migrations/steel-display.lua
T
ickputzdirwech 8b6638dcd4 Fix for migration issue with steel displays.
Added fast replaceable group. (Resets the label)
2020-05-16 18:10:45 +02:00

12 lines
327 B
Lua

for index, force in pairs(game.forces) do
local technologies = force.technologies
local recipes = force.recipes
if technologies["steel-processing"].researched then
recipes["steel-display-small"].enabled = true
recipes["steel-display-medium"].enabled = true
recipes["steel-display"].enabled = true
end
end