Merge pull request #16999 from lewcc/xeno-orbit-menu

Add xenomorph section to orbit menu
This commit is contained in:
variableundefined
2021-10-31 22:26:11 -05:00
committed by GitHub
+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)