Removes BoxStation in favor of IceBox

This commit is contained in:
skoglol
2020-07-06 15:03:07 +02:00
parent 2d6c10c1ad
commit eca1ebad92
8 changed files with 9 additions and 121378 deletions
+6 -6
View File
@@ -5,7 +5,7 @@
/datum/map_config
// Metadata
var/config_filename = "_maps/boxstation.json"
var/config_filename = "_maps/metastation.json"
var/defaulted = TRUE // set to FALSE by LoadConfig() succeeding
// Config from maps.txt
var/config_max_users = 0
@@ -13,10 +13,10 @@
var/voteweight = 1
var/votable = FALSE
// Config actually from the JSON - should default to Box
var/map_name = "Box Station"
var/map_path = "map_files/BoxStation"
var/map_file = "BoxStation.dmm"
// Config actually from the JSON - should default to Meta
var/map_name = "Meta Station"
var/map_path = "map_files/MetaStation"
var/map_file = "MetaStation.dmm"
var/traits = null
var/space_ruin_levels = 7
@@ -72,7 +72,7 @@
map_path = json["map_path"]
map_file = json["map_file"]
// "map_file": "BoxStation.dmm"
// "map_file": "MetaStation.dmm"
if (istext(map_file))
if (!fexists("_maps/[map_path]/[map_file]"))
log_world("Map file ([map_path]/[map_file]) does not exist!")