Modularizes SD files a bit

This commit is contained in:
Heroman
2021-10-31 08:42:18 +10:00
parent 64a802574c
commit 4b38fb9034
20 changed files with 647 additions and 644 deletions
+28 -2
View File
@@ -31,7 +31,7 @@ var/list/spawntypes = list()
if(!(J.mob_type & allowed_mob_types))
return 0
return 1
/datum/spawnpoint/proc/get_spawn_position()
@@ -77,4 +77,30 @@ var/list/spawntypes = list()
/datum/spawnpoint/cyborg/New()
..()
turfs = latejoin_cyborg
turfs = latejoin_cyborg
/obj/effect/landmark/arrivals
name = "JoinLateShuttle"
delete_me = 1
/obj/effect/landmark/arrivals/New()
latejoin += loc
..()
var/global/list/latejoin_tram = list()
/obj/effect/landmark/tram
name = "JoinLateTram"
delete_me = 1
/obj/effect/landmark/tram/New()
latejoin_tram += loc // There's no tram but you know whatever man!
..()
/datum/spawnpoint/tram
display_name = "Tram Station"
msg = "will arrive to the station shortly by shuttle"
/datum/spawnpoint/tram/New()
..()
turfs = latejoin_tram