mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-26 22:57:39 +01:00
[MIRROR] code/global.dm => code/_global_vars/ (#10689)
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
co-authored by
Selis
Kashargul
parent
a7718c6177
commit
f04f992cfe
@@ -50,7 +50,7 @@ var/list/spawntypes = list()
|
||||
|
||||
/datum/spawnpoint/arrivals/New()
|
||||
..()
|
||||
turfs = latejoin
|
||||
turfs = GLOB.latejoin
|
||||
|
||||
/datum/spawnpoint/gateway
|
||||
display_name = "Gateway"
|
||||
@@ -58,7 +58,7 @@ var/list/spawntypes = list()
|
||||
|
||||
/datum/spawnpoint/gateway/New()
|
||||
..()
|
||||
turfs = latejoin_gateway
|
||||
turfs = GLOB.latejoin_gateway
|
||||
/* VOREStation Edit
|
||||
/datum/spawnpoint/elevator
|
||||
display_name = "Elevator"
|
||||
@@ -76,7 +76,7 @@ var/list/spawntypes = list()
|
||||
|
||||
/datum/spawnpoint/cryo/New()
|
||||
..()
|
||||
turfs = latejoin_cryo
|
||||
turfs = GLOB.latejoin_cryo
|
||||
|
||||
/datum/spawnpoint/cyborg
|
||||
display_name = "Cyborg Storage"
|
||||
@@ -86,24 +86,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
|
||||
@@ -113,7 +113,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"
|
||||
@@ -130,4 +130,4 @@ var/global/list/latejoin_tram = list()
|
||||
|
||||
/datum/spawnpoint/vore/New()
|
||||
..()
|
||||
turfs = latejoin
|
||||
turfs = GLOB.latejoin
|
||||
|
||||
Reference in New Issue
Block a user