mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 11:37:40 +01:00
@@ -336,7 +336,8 @@
|
||||
/datum/game_mode/proc/get_living_heads()
|
||||
. = list()
|
||||
for(var/mob/living/carbon/human/player in mob_list)
|
||||
if(player.stat != DEAD && player.mind && (player.mind.assigned_role in command_positions))
|
||||
var/list/real_command_positions = command_positions.Copy() - "Nanotrasen Representative"
|
||||
if(player.stat != DEAD && player.mind && (player.mind.assigned_role in real_command_positions))
|
||||
. |= player.mind
|
||||
|
||||
|
||||
@@ -346,7 +347,8 @@
|
||||
/datum/game_mode/proc/get_all_heads()
|
||||
. = list()
|
||||
for(var/mob/player in mob_list)
|
||||
if(player.mind && (player.mind.assigned_role in command_positions))
|
||||
var/list/real_command_positions = command_positions.Copy() - "Nanotrasen Representative"
|
||||
if(player.mind && (player.mind.assigned_role in real_command_positions))
|
||||
. |= player.mind
|
||||
|
||||
//////////////////////////////////////////////
|
||||
|
||||
@@ -66,7 +66,8 @@ var/list/command_positions = list(
|
||||
"Head of Security",
|
||||
"Chief Engineer",
|
||||
"Research Director",
|
||||
"Chief Medical Officer"
|
||||
"Chief Medical Officer",
|
||||
"Nanotrasen Representative"
|
||||
)
|
||||
|
||||
|
||||
@@ -134,7 +135,8 @@ var/list/security_positions = list(
|
||||
"Detective",
|
||||
"Security Officer",
|
||||
"Brig Physician",
|
||||
"Security Pod Pilot"
|
||||
"Security Pod Pilot",
|
||||
"Magistrate"
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user