Add xenomorph section to orbit menu

This commit is contained in:
lewcc
2021-10-27 12:36:15 -04:00
parent b87135fcc8
commit 8d5409d4ff
+5 -1
View File
@@ -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)