mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-20 13:47:12 +01:00
b549f48a9f
* Should not Sleep * roughdraft that works for POI loader needs the bells and whistles * better queue * Moved the procs to the subsystem itself * Update pois.dm * empty list * Update pois.dm * do it during init
13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
/obj/effect/landmark/poi_loader
|
|
name = "PoI Loader"
|
|
var/size_x
|
|
var/size_y
|
|
var/poi_type = null
|
|
var/remove_from_pool = TRUE
|
|
|
|
INITIALIZE_IMMEDIATE(/obj/effect/landmark/poi_loader)
|
|
|
|
/obj/effect/landmark/poi_loader/Initialize(mapload)
|
|
SSpoints_of_interest.poi_queue += src
|
|
return ..()
|