mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Should make CMO count as a head for rev purposes. Note: This is quite difficult to test properly locally, report any bugs ASAP
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@419 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -306,7 +306,7 @@
|
||||
for(var/mob/living/carbon/human/player in world)
|
||||
if(player.mind)
|
||||
var/role = player.mind.assigned_role
|
||||
if(role in list("Captain", "Head of Security", "Head of Personnel", "Chief Engineer", "Research Director"))
|
||||
if(role in list("Captain", "Head of Security", "Head of Personnel", "Chief Engineer", "Research Director", "Chief Medical Officer"))
|
||||
heads += player.mind
|
||||
|
||||
return heads
|
||||
@@ -318,7 +318,7 @@
|
||||
for(var/mob/player in world)
|
||||
if(player.mind)
|
||||
var/role = player.mind.assigned_role
|
||||
if(role in list("Captain", "Head of Security", "Head of Personnel", "Chief Engineer", "Research Director"))
|
||||
if(role in list("Captain", "Head of Security", "Head of Personnel", "Chief Engineer", "Research Director", "Chief Medical Officer"))
|
||||
heads += player.mind
|
||||
|
||||
return heads
|
||||
@@ -328,7 +328,7 @@
|
||||
for(var/mob/living/carbon/human/player in world)
|
||||
if(player.mind)
|
||||
var/role = player.mind.assigned_role
|
||||
if(role in list("Captain", "Head of Security", "Head of Personnel", "Chief Engineer", "Research Director", "Security Officer", "Detective", "AI"))
|
||||
if(role in list("Captain", "Head of Security", "Head of Personnel", "Chief Engineer", "Research Director", "Security Officer", "Detective", "AI", "Chief Medical Officer"))
|
||||
ucs += player.mind
|
||||
|
||||
return ucs
|
||||
|
||||
Reference in New Issue
Block a user