mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
fixes it (#16227)
This commit is contained in:
@@ -264,19 +264,19 @@
|
||||
prefix = "_maps/RandomRuins/StationRuins/MetaStation/"
|
||||
|
||||
/datum/map_template/ruin/station/meta/supermatter
|
||||
id = "engine_sm"
|
||||
suffix = "engine_sm.dmm"
|
||||
name = "Engine SM"
|
||||
id = "meta_sm"
|
||||
suffix = "meta_sm.dmm"
|
||||
name = "Meta SM"
|
||||
|
||||
/datum/map_template/ruin/station/meta/tesla_singulo
|
||||
id = "engine_singulo_tesla"
|
||||
suffix = "engine_singulo_tesla.dmm"
|
||||
name = "Engine Singulo And Tesla"
|
||||
id = "meta_singulo_tesla"
|
||||
suffix = "meta_singulo_tesla.dmm"
|
||||
name = "Meta Singulo And Tesla"
|
||||
|
||||
/datum/map_template/ruin/station/meta/teg
|
||||
id = "engine_teg"
|
||||
suffix = "engine_teg.dmm"
|
||||
name = "Engine TEG"
|
||||
id = "meta_teg"
|
||||
suffix = "meta_teg.dmm"
|
||||
name = "Meta TEG"
|
||||
|
||||
/datum/map_template/ruin/station/eclipse
|
||||
prefix = "_maps/RandomRuins/StationRuins/EclipseStation/"
|
||||
|
||||
@@ -137,20 +137,20 @@ GLOBAL_LIST_EMPTY(chosen_station_templates)
|
||||
template_names = list("Transfer 1", "Transfer 2", "Transfer 3", "Transfer 4", "Transfer 5", "Transfer 6", "Transfer 7", "Transfer 8", "Transfer 9", "Transfer 10")
|
||||
|
||||
/obj/effect/landmark/stationroom/meta/engine
|
||||
template_names = list("Engine Singulo And Tesla" = 30, "Engine SM" = 50, "Engine TEG" = 20)
|
||||
template_names = list("Meta Singulo And Tesla" = 30, "Meta SM" = 50, "Meta TEG" = 20)
|
||||
|
||||
/obj/effect/landmark/stationroom/meta/engine/choose()
|
||||
. = ..()
|
||||
var/enginepicked = CONFIG_GET(number/engine_type)
|
||||
switch(enginepicked)
|
||||
if(1)
|
||||
return "Engine SM"
|
||||
return "Meta SM"
|
||||
if(2)
|
||||
return "Engine Singulo And Tesla"
|
||||
return "Meta Singulo And Tesla"
|
||||
if(3)
|
||||
return . //We let the normal choose() do the work if we want to have all of them in play
|
||||
if(4)
|
||||
return "Engine TEG"
|
||||
return "Meta TEG"
|
||||
|
||||
/obj/effect/landmark/stationroom/eclipse/bar
|
||||
template_names = list("Eclipse Bar Default", "Eclipse Bar Beach", "Eclipse Bar Western", "Eclipse Bar Clock", "Eclipse Bar Disco", "Eclipse Bar Casino")
|
||||
|
||||
Reference in New Issue
Block a user