From 2b34a68f50aec446be63898b03dd0e54e72cdbd2 Mon Sep 17 00:00:00 2001 From: yurivw Date: Sat, 30 Jul 2016 23:54:07 +0200 Subject: [PATCH] captain to Captain Changed the text from: "All hands, captain" to "All hands, Captain." The supervisors are now also proprly capitalised. --- code/game/jobs/job/supervisor.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/jobs/job/supervisor.dm b/code/game/jobs/job/supervisor.dm index 7768cf11870..1a4591bf007 100644 --- a/code/game/jobs/job/supervisor.dm +++ b/code/game/jobs/job/supervisor.dm @@ -39,7 +39,7 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) L.imp_in = H L.implanted = 1 H.sec_hud_set_implants() - captain_announcement.Announce("All hands, captain [H.real_name] on deck!") + captain_announcement.Announce("All hands, Captain [H.real_name] on deck!") callHook("captain_spawned", list("captain" = H)) return 1 @@ -54,7 +54,7 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) department_flag = SUPPORT total_positions = 1 spawn_positions = 1 - supervisors = "the captain" + supervisors = "the Captain" selection_color = "#ddddff" idtype = /obj/item/weapon/card/id/silver req_admin_notify = 1 @@ -143,7 +143,7 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) department_flag = KARMA total_positions = 1 spawn_positions = 1 - supervisors = "the nanotrasen representative" + supervisors = "the Nanotrasen Representative" selection_color = "#ddddff" idtype = /obj/item/weapon/card/id/nanotrasen req_admin_notify = 1 @@ -232,7 +232,7 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) department_flag = SUPPORT total_positions = 2 spawn_positions = 2 - supervisors = "the magistrate" + supervisors = "the Magistrate" selection_color = "#ddddff" access = list(access_lawyer, access_court, access_sec_doors, access_maint_tunnels) minimal_access = list(access_lawyer, access_court, access_sec_doors, access_maint_tunnels)