Skip to content

Commit

Permalink
Reorders Groundside Operations console sorting (#7042)
Browse files Browse the repository at this point in the history
# About the pull request

FTLs are now below SLs
SGs are now below specs, instead of medics.

FTLs were not getting sorted. (Unintentional revert in earlier PR)

# Explain why it's good for the game
ASL priority is: SL -> FTL -> Spec/SG, let's sort according to that

# 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>


# Changelog
:cl:
add: CIC groundside operations console now correctly sorts FTLs and SGs
/:cl:
  • Loading branch information
TheGamerdk committed Aug 28, 2024
1 parent 5571c3f commit ad51869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/machinery/computer/groundside_operations.dm
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
if(show_command_squad)
dat += format_list_of_marines(list(GLOB.marine_leaders[JOB_CO], GLOB.marine_leaders[JOB_XO]) + GLOB.marine_leaders[JOB_SO], list(JOB_CO, JOB_XO, JOB_SO))
else if(current_squad)
dat += format_list_of_marines(current_squad.marines_list, list(JOB_SQUAD_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MARINE))
dat += format_list_of_marines(current_squad.marines_list, list(JOB_SQUAD_LEADER, JOB_SQUAD_TEAM_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_MARINE))
else
dat += "No Squad selected!<BR>"
dat += "<br><hr>"
Expand Down

0 comments on commit ad51869

Please sign in to comment.