Skip to content

Commit

Permalink
Fixes a typo that made the game think there's not a CO onboard. (#3722)
Browse files Browse the repository at this point in the history
# About the pull request

<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->

Officer, not Officers

# Explain why it's good for the game
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>

bugs bad

# Changelog
:cl:
fix: The game will no longer falsely claim there is no CO
/:cl:

---------

Co-authored-by: harryob <[email protected]>
  • Loading branch information
TheGamerdk and harryob authored Jun 26, 2023
1 parent b18014a commit 8db4763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/ticker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ SUBSYSTEM_DEF(ticker)

for(var/mob/living/carbon/human/player in GLOB.human_mob_list)
if(player.mind)
if(player.job == "Commanding Officers")
if(player.job == JOB_CO)
captainless = FALSE
if(player.job)
RoleAuthority.equip_role(player, RoleAuthority.roles_by_name[player.job], late_join = FALSE)
Expand Down

0 comments on commit 8db4763

Please sign in to comment.