Skip to content

Commit

Permalink
Reverts 6056's changes to FD/captain
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowtail117 committed Oct 25, 2023
1 parent 70738bc commit 00ba43f
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions code/modules/jobs/job_types/station/command/captain.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var/datum/legacy_announcement/minor/captain_announcement = new(do_newscast = 1)

/datum/role/job/station/captain
id = JOB_ID_CAPTAIN
title = "Captain"
title = "Facility Director"
economy_payscale = ECONOMY_PAYSCALE_JOB_CAPTAIN
flag = CAPTAIN
disallow_jobhop = TRUE
Expand All @@ -25,12 +25,14 @@ var/datum/legacy_announcement/minor/captain_announcement = new(do_newscast = 1)
ideal_character_age = 70 // Old geezer captains ftw

outfit_type = /datum/outfit/job/station/captain
desc = "The Captain manages the other Command Staff, and through them the rest of the station. Though they have access to everything, \
they do not understand everything, and are expected to delegate tasks to the appropriate crew member. The Captain is expected to \
desc = "The Facility Director manages the other Command Staff, and through them the rest of the station. Though they have access to everything, \
they do not understand everything, and are expected to delegate tasks to the appropriate crew member. The Facility Director is expected to \
have an understanding of Standard Operating Procedure, and is subject to it, and legal action, in the same way as every other crew member."
alt_titles = list(
"Overseer"= /datum/prototype/struct/alt_title/overseer,
"Facility Director" = /datum/prototype/struct/alt_title/captain/fd
"Site Manager" = /datum/prototype/struct/alt_title/captain/site,
"Director of Operations" = /datum/prototype/struct/alt_title/captain/director,
"Captain" = /datum/prototype/struct/alt_title/captain/captain
)

/datum/role/job/station/captain/get_access()
Expand All @@ -39,8 +41,14 @@ var/datum/legacy_announcement/minor/captain_announcement = new(do_newscast = 1)
/datum/prototype/struct/alt_title/overseer
title = "Overseer"

/datum/prototype/struct/alt_title/captain/fd
title = "Facility Director"
/datum/prototype/struct/alt_title/captain/site
title = "Site Manager"

/datum/prototype/struct/alt_title/captain/director
title = "Director of Operations"

/datum/prototype/struct/alt_title/captain/captain
title = "Captain"

/datum/outfit/job/station/captain
name = OUTFIT_JOB_NAME("Captain")
Expand Down

0 comments on commit 00ba43f

Please sign in to comment.