Files
Bubberstation/code/modules/shuttle/transit.dm
2016-06-28 13:04:43 +01:00

15 lines
351 B
Plaintext

/obj/effect/landmark/transit
name = "transit space marker"
desc = "This indicates where transit space begins and ends."
invisibility = FALSE
icon = 'icons/effects/effects.dmi'
icon_state = "at_shield1"
/obj/effect/landmark/transit/New()
. = ..()
transit_markers += src
/obj/effect/landmark/transit/Destroy()
transit_markers -= src
. = ..()