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)