From 13d9b71eb8be7747dbe5facdf29a47df95e8b082 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Mon, 4 Dec 2017 21:33:06 -0500 Subject: [PATCH 1/2] Expands Banhammer --- code/game/jobs/jobs.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index a9aa142ac1d..80cfd953d42 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -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" ) From 12b78dc44970b6b637362bc00126cbd22c708b94 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Sat, 23 Dec 2017 23:04:25 -0500 Subject: [PATCH 2/2] Add crotch holsters --- code/game/gamemodes/game_mode.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 7f8a7c4a3dc..42fb3105f18 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -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 //////////////////////////////////////////////