mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 03:49:10 +01:00
b488e51549
   --------- Co-authored-by: DreamySkrell <>
19 lines
384 B
Plaintext
19 lines
384 B
Plaintext
|
|
/obj/effect/landmark/minimap_poi
|
|
name = "minimap poi"
|
|
desc = null
|
|
icon = 'icons/effects/map_effects.dmi'
|
|
icon_state = "minimap_poi"
|
|
|
|
/obj/effect/landmark/minimap_poi/Initialize()
|
|
..()
|
|
return INITIALIZE_HINT_LATELOAD
|
|
|
|
/obj/effect/landmark/minimap_poi/LateInitialize()
|
|
. = ..()
|
|
SSholomap.pois += src
|
|
|
|
/obj/effect/landmark/minimap_poi/Destroy()
|
|
SSholomap.pois -= src
|
|
. = ..()
|