mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +01:00
code/global.dm => code/_global_vars/ (#17244)
* 1 * Full conversion * . * . --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
@@ -49,7 +49,7 @@ var/list/spawntypes = list()
|
||||
|
||||
/datum/spawnpoint/arrivals/New()
|
||||
..()
|
||||
turfs = latejoin
|
||||
turfs = GLOB.latejoin
|
||||
|
||||
/datum/spawnpoint/gateway
|
||||
display_name = "Gateway"
|
||||
@@ -57,7 +57,7 @@ var/list/spawntypes = list()
|
||||
|
||||
/datum/spawnpoint/gateway/New()
|
||||
..()
|
||||
turfs = latejoin_gateway
|
||||
turfs = GLOB.latejoin_gateway
|
||||
/* VOREStation Edit
|
||||
/datum/spawnpoint/elevator
|
||||
display_name = "Elevator"
|
||||
@@ -74,7 +74,7 @@ var/list/spawntypes = list()
|
||||
|
||||
/datum/spawnpoint/cryo/New()
|
||||
..()
|
||||
turfs = latejoin_cryo
|
||||
turfs = GLOB.latejoin_cryo
|
||||
|
||||
/datum/spawnpoint/cyborg
|
||||
display_name = "Cyborg Storage"
|
||||
@@ -83,24 +83,24 @@ var/list/spawntypes = list()
|
||||
|
||||
/datum/spawnpoint/cyborg/New()
|
||||
..()
|
||||
turfs = latejoin_cyborg
|
||||
turfs = GLOB.latejoin_cyborg
|
||||
|
||||
/obj/effect/landmark/arrivals
|
||||
name = "JoinLateShuttle"
|
||||
delete_me = 1
|
||||
|
||||
/obj/effect/landmark/arrivals/Initialize(mapload)
|
||||
latejoin += loc
|
||||
GLOB.latejoin += loc
|
||||
. = ..()
|
||||
|
||||
var/global/list/latejoin_tram = list()
|
||||
GLOBAL_LIST_EMPTY(latejoin_tram)
|
||||
|
||||
/obj/effect/landmark/tram
|
||||
name = "JoinLateTram"
|
||||
delete_me = 1
|
||||
|
||||
/obj/effect/landmark/tram/Initialize(mapload)
|
||||
latejoin_tram += loc // There's no tram but you know whatever man!
|
||||
GLOB.latejoin_tram += loc // There's no tram but you know whatever man!
|
||||
. = ..()
|
||||
|
||||
/datum/spawnpoint/tram
|
||||
@@ -109,7 +109,7 @@ var/global/list/latejoin_tram = list()
|
||||
|
||||
/datum/spawnpoint/tram/New()
|
||||
..()
|
||||
turfs = latejoin_tram
|
||||
turfs = GLOB.latejoin_tram
|
||||
|
||||
/datum/spawnpoint/vore
|
||||
display_name = "Vorespawn - Prey"
|
||||
@@ -126,4 +126,4 @@ var/global/list/latejoin_tram = list()
|
||||
|
||||
/datum/spawnpoint/vore/New()
|
||||
..()
|
||||
turfs = latejoin
|
||||
turfs = GLOB.latejoin
|
||||
|
||||
Reference in New Issue
Block a user