mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Makes whiteships spawn again (#15654)
* mapcode moment * Update map_config.dm
This commit is contained in:
@@ -28,12 +28,12 @@
|
||||
var/shuttles = list(
|
||||
"cargo" = "cargo_box",
|
||||
"ferry" = "ferry_fancy",
|
||||
"whiteship" = "whiteship_box",
|
||||
"whiteship" = "whiteship_1",
|
||||
"emergency" = "emergency_box")
|
||||
|
||||
/proc/load_map_config(filename = "data/next_map.json", default_to_box, delete_after, error_if_missing = TRUE)
|
||||
var/datum/map_config/config = new
|
||||
var/whiteship = pick("whiteship1", "whiteship2", "whiteship3", "whiteship4", "whiteship5")
|
||||
var/whiteship = pick("whiteship_1", "whiteship_2", "whiteship_3", "whiteship_4", "whiteship_5")
|
||||
config.shuttles["whiteship"] = whiteship
|
||||
if (default_to_box)
|
||||
return config
|
||||
|
||||
@@ -446,23 +446,23 @@
|
||||
description = "Standard issue CentCom Ferry for Kilo pattern stations. Includes additional equipment and rechargers."
|
||||
|
||||
/datum/map_template/shuttle/whiteship/box
|
||||
suffix = "box"
|
||||
suffix = "1"
|
||||
name = "Hospital Ship"
|
||||
|
||||
/datum/map_template/shuttle/whiteship/meta
|
||||
suffix = "meta"
|
||||
suffix = "2"
|
||||
name = "Salvage Ship"
|
||||
|
||||
/datum/map_template/shuttle/whiteship/pubby
|
||||
suffix = "pubby"
|
||||
suffix = "3"
|
||||
name = "NT White UFO"
|
||||
|
||||
/datum/map_template/shuttle/whiteship/cere
|
||||
suffix = "cere"
|
||||
suffix = "4"
|
||||
name = "NT Construction Vessel"
|
||||
|
||||
/datum/map_template/shuttle/whiteship/delta
|
||||
suffix = "delta"
|
||||
suffix = "5"
|
||||
name = "NT Frigate"
|
||||
|
||||
/datum/map_template/shuttle/whiteship/pod
|
||||
|
||||
Reference in New Issue
Block a user