1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/maps/loading_screen.lua

17 lines
376 B
Lua
Raw Normal View History

2018-06-12 13:05:32 +02:00
local b = require "map_gen.shared.builders"
2019-10-10 11:29:28 +02:00
local ScenarioInfo = require 'features.gui.info'
ScenarioInfo.set_map_name('Loading Screen')
ScenarioInfo.set_map_description(
[[
Did I, or did I not enter a server?
Why am I still seeing the menu background???
]]
)
2018-06-12 13:05:32 +02:00
local pic = require "map_gen.data.presets.factory"
pic = b.decompress(pic)
2018-06-12 13:05:32 +02:00
local map = b.picture(pic)
return map