mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Datumized vampires (#17166)
Co-authored-by: Farie82 <farie82@users.noreply.github.com> Co-authored-by: dearmochi <1496804+dearmochi@users.noreply.github.com>
This commit is contained in:
@@ -76,11 +76,16 @@
|
||||
|
||||
var/datum/mind/mind = M.mind
|
||||
if(user.antagHUD)
|
||||
// If a mind is many antags at once, we'll display all of them, each
|
||||
// under their own antag sub-section.
|
||||
// This is arguably better, than picking one of the antag datums at random.
|
||||
/*
|
||||
If a mind is many antags at once, we'll display all of them, each
|
||||
under their own antag sub-section.
|
||||
This is arguably better, than picking one of the antag datums at random.
|
||||
|
||||
// Traitors - the only antags in `.antag_datums` at the time of writing.
|
||||
list of antags that are datumised:
|
||||
- traitor
|
||||
- mindslaves/vampire thralls
|
||||
- vampire
|
||||
*/
|
||||
for(var/_A in mind.antag_datums)
|
||||
var/datum/antagonist/A = _A
|
||||
var/antag_serialized = serialized.Copy()
|
||||
@@ -90,8 +95,7 @@
|
||||
// Not-very-datumized antags follow
|
||||
// Associative list of antag name => whether this mind is this antag
|
||||
var/other_antags = list(
|
||||
"Changeling" = (mind.changeling != null),
|
||||
"Vampire" = (mind.vampire != null),
|
||||
"Changeling" = (mind.changeling != null)
|
||||
)
|
||||
if(SSticker && SSticker.mode)
|
||||
other_antags += list(
|
||||
|
||||
Reference in New Issue
Block a user