mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-30 11:32:20 +00:00
15 lines
351 B
Plaintext
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
|
|
. = ..()
|