mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 22:12:58 +01:00
Overmap exoplanet generation, ported from Bay. (#12362)
This commit is contained in:
@@ -266,4 +266,20 @@
|
||||
|
||||
/obj/effect/landmark/force_spawnpoint/do_landmark_effect()
|
||||
LAZYINITLIST(force_spawnpoints)
|
||||
LAZYADD(force_spawnpoints[job_tag], loc)
|
||||
LAZYADD(force_spawnpoints[job_tag], loc)
|
||||
|
||||
var/list/ruin_landmarks = list()
|
||||
|
||||
/obj/effect/landmark/ruin
|
||||
var/datum/map_template/ruin/ruin_template
|
||||
|
||||
/obj/effect/landmark/ruin/New(loc, my_ruin_template)
|
||||
name = "ruin_[sequential_id(/obj/effect/landmark/ruin)]"
|
||||
..(loc)
|
||||
ruin_template = my_ruin_template
|
||||
ruin_landmarks |= src
|
||||
|
||||
/obj/effect/landmark/ruin/Destroy()
|
||||
ruin_landmarks -= src
|
||||
ruin_template = null
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user