Overmap exoplanet generation, ported from Bay. (#12362)

This commit is contained in:
Matt Atlas
2022-01-17 22:16:48 -03:00
committed by GitHub
parent 918d43972e
commit 5bcf84cb23
84 changed files with 2321 additions and 4654 deletions
+17 -1
View File
@@ -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
. = ..()