1
0
This commit is contained in:
Wyrrrd
2020-05-26 20:43:08 +02:00
2 changed files with 12 additions and 0 deletions

View File

@@ -54,6 +54,7 @@ for display,displaydata in pairs(DID.displays) do
icon_size = DID.icon_size, icon_size = DID.icon_size,
icon_mipmaps = DID.icon_mipmaps, icon_mipmaps = DID.icon_mipmaps,
corpse = "small-remnants", corpse = "small-remnants",
fast_replaceable_group = "display",
minable = { minable = {
mining_time = 0.2, mining_time = 0.2,
result = display, result = display,

View File

@@ -0,0 +1,11 @@
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