mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +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)
|
for(var/mob/living/carbon/human/player in world)
|
||||||
if(player.mind)
|
if(player.mind)
|
||||||
var/role = player.mind.assigned_role
|
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
|
heads += player.mind
|
||||||
|
|
||||||
return heads
|
return heads
|
||||||
@@ -318,7 +318,7 @@
|
|||||||
for(var/mob/player in world)
|
for(var/mob/player in world)
|
||||||
if(player.mind)
|
if(player.mind)
|
||||||
var/role = player.mind.assigned_role
|
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
|
heads += player.mind
|
||||||
|
|
||||||
return heads
|
return heads
|
||||||
@@ -328,7 +328,7 @@
|
|||||||
for(var/mob/living/carbon/human/player in world)
|
for(var/mob/living/carbon/human/player in world)
|
||||||
if(player.mind)
|
if(player.mind)
|
||||||
var/role = player.mind.assigned_role
|
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
|
ucs += player.mind
|
||||||
|
|
||||||
return ucs
|
return ucs
|
||||||
|
|||||||
Reference in New Issue
Block a user