1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

foundation for map. current features:

-vanilla terrain
-car body enabled

still need enabling:
-tiny ores
This commit is contained in:
theorangeangle 2019-05-20 00:01:44 -05:00
parent 59f682a75a
commit 2688ca9899

View File

@ -0,0 +1,20 @@
local b = require 'map_gen.shared.builders'
local map_entities = {
require 'map_gen.shared.loot_items',
require 'map_gen.shared.car_body'
}
local RS = require 'map_gen.shared.redmew_surface'
local MGSP = require 'resources.map_gen_settings'
RS.set_map_gen_settings(
{
MGSP.water_none
}
)
local map = true
b.apply_entities(map, map_entities)
return map