From 14d236f6e030f7b2d9abbeefdacde2f6701580af Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 22 Sep 2023 05:18:12 -0700 Subject: [PATCH] Update command_secretary.dm --- .../station/command/command_secretary.dm | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/code/modules/jobs/job_types/station/command/command_secretary.dm b/code/modules/jobs/job_types/station/command/command_secretary.dm index f3a61ded4cec..1cc5f5e8d9fb 100644 --- a/code/modules/jobs/job_types/station/command/command_secretary.dm +++ b/code/modules/jobs/job_types/station/command/command_secretary.dm @@ -1,6 +1,6 @@ /datum/role/job/station/command_secretary id = JOB_ID_COMMAND_SECRETARY - title = "Command Secretary" + title = "Bridge Officer" economy_payscale = ECONOMY_PAYSCALE_JOB_HELM flag = BRIDGE departments = list(DEPARTMENT_COMMAND) @@ -20,9 +20,9 @@ ACCESS_ENGINEERING_MAINT, ) - outfit_type = /datum/outfit/job/station/command_secretary - desc = "A Command Secretary handles paperwork duty for the Heads of Staff, so they can better focus on managing their departments. \ - They are not Heads of Staff, and have no real authority." + outfit_type = /datum/outfit/job/station/command_secretary/bridge_officer + desc = "A bridge officer is often considered command staff in-training. Their duties are to assist the command staff with things like paperwork, \ + as well as to assist in piloting the ship when deemed necessary and applicable." alt_titles = list( "Command Liaison" = /datum/prototype/struct/alt_title/command_liaison, @@ -30,27 +30,33 @@ "Command Assistant" = /datum/prototype/struct/alt_title/command_assistant, "Command Intern" = /datum/prototype/struct/alt_title/command_intern, "Helmsman" = /datum/prototype/struct/alt_title/commsec/helmsman, - "Bridge Officer" = /datum/prototype/struct/alt_title/commsec/officer + "Command Secretary" = /datum/prototype/struct/alt_title/commsec/actually_commsec ) +//! todo: WHY DO WE HAVE SO MANY GET RID OF THEM + /datum/prototype/struct/alt_title/command_liaison title = "Command Liaison" + title_outfit = /datum/outfit/job/station/command_secretary /datum/prototype/struct/alt_title/bridge_secretary title = "Bridge Secretary" + title_outfit = /datum/outfit/job/station/command_secretary /datum/prototype/struct/alt_title/command_assistant title = "Command Assistant" + title_outfit = /datum/outfit/job/station/command_secretary /datum/prototype/struct/alt_title/command_intern title = "Command Intern" + title_outfit = /datum/outfit/job/station/command_secretary /datum/prototype/struct/alt_title/commsec/helmsman title = "Helmsman" -/datum/prototype/struct/alt_title/commsec/officer - title = "Bridge Officer" - title_outfit = /datum/outfit/job/station/command_secretary/bridge_officer +/datum/prototype/struct/alt_title/commsec/actually_commsec + title = "Command Secretary" + title_outfit = /datum/outfit/job/station/command_secretary /datum/outfit/job/station/command_secretary name = OUTFIT_JOB_NAME("Command Secretary")