1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-30 04:30:58 +02:00

* Fix to allow thermal water extractors (thermal-extractor) to be placed;

* Fix to logistics-0 reference
* Fix to use correct banned_entities.lua file
This commit is contained in:
TWLTriston 2019-05-29 06:37:33 -04:00 committed by James Gillham
parent 5641e99c26
commit fc3b921daf
2 changed files with 4 additions and 3 deletions

View File

@ -43,7 +43,7 @@ proper material ratios, expand the map with pollution!
]] ]]
) )
require 'map_gen.maps.danger_bobs_ores.banned_entities' require 'map_gen.maps.danger_bobangels_ores.banned_entities'
global.config.lazy_bastard.enabled = false global.config.lazy_bastard.enabled = false
@ -126,7 +126,7 @@ Global.register_init(
tbl.seed = s.map_gen_settings.seed tbl.seed = s.map_gen_settings.seed
tbl.surface = s tbl.surface = s
game.difficulty_settings.technology_price_multiplier = 20 game.difficulty_settings.technology_price_multiplier = 20
game.forces.player.technologies.logistics-0.researched = true game.forces.player.technologies['logistics-0'].researched = true
game.forces.player.technologies.automation.researched = true game.forces.player.technologies.automation.researched = true
game.forces.player.technologies['mining-productivity-1'].enabled = false game.forces.player.technologies['mining-productivity-1'].enabled = false
game.forces.player.technologies['mining-productivity-2'].enabled = false game.forces.player.technologies['mining-productivity-2'].enabled = false

View File

@ -53,7 +53,8 @@ RestrictEntities.add_allowed(
'car', 'car',
'tank', 'tank',
'bob-tank-2', 'bob-tank-2',
'bob-tank-3' 'bob-tank-3',
'thermal-water-extractor'
} }
) )