Player terror spiders now have their own orbit category (#16052)

* Terror spiders now have their own orbit category

* Update code/modules/mob/dead/observer/orbit.dm

Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>

Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
This commit is contained in:
dearmochi
2021-05-22 23:21:18 +01:00
committed by GitHub
co-authored by AffectedArc07
parent 97b758707e
commit 122f09585e
+6
View File
@@ -114,6 +114,12 @@
antag_serialized["antag"] = antag_name
antagonists += list(antag_serialized)
// Player terror spiders have their own category to help see how much there are.
// Not in the above block because terrors can be known whether AHUD is on or not.
if(isterrorspider(M))
var/list/antag_serialized = serialized.Copy()
antag_serialized["antag"] = "Terror Spider"
antagonists += list(antag_serialized)
else
misc += list(serialized)