From 8d5409d4ffed1dce33178f91c28139a5a7d7a68d Mon Sep 17 00:00:00 2001 From: lewcc Date: Wed, 27 Oct 2021 12:36:15 -0400 Subject: [PATCH] Add xenomorph section to orbit menu --- code/modules/mob/dead/observer/orbit.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/dead/observer/orbit.dm b/code/modules/mob/dead/observer/orbit.dm index 0d67959c5e2..e8d34d5efa5 100644 --- a/code/modules/mob/dead/observer/orbit.dm +++ b/code/modules/mob/dead/observer/orbit.dm @@ -112,7 +112,7 @@ antag_serialized["antag"] = antag_name antagonists += list(antag_serialized) - // Player terror spiders have their own category to help see how much there are. + // Player terror spiders (and other hostile player-controlled event mobs) 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() @@ -122,6 +122,10 @@ var/list/antag_serialized = serialized.Copy() antag_serialized["antag"] = "Revenant" antagonists += list(antag_serialized) + else if(isalien(M)) + var/list/antag_serialized = serialized.Copy() + antag_serialized["antag"] = "Xenomorph" + antagonists += list(antag_serialized) else misc += list(serialized)