Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
BeagleGaming1 committed Oct 12, 2023
1 parent 93260e6 commit e4f4c10
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions code/datums/datacore.dm
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,7 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new)
dept_flags |= FLAG_SHOW_MARINES
squad_sublists[squad_name] = TRUE
///If it is a real squad in the USCM squad list to prevent the crew manifest from breaking
var/real_squad = FALSE
for(var/current_squad in ROLES_SQUAD_ALL)
if(squad_name == current_squad)
real_squad = TRUE
break
if(!real_squad)
if(!(squad_name in ROLES_SQUAD_ALL))
continue
LAZYSET(marines_by_squad[squad_name][real_rank], name, rank)

Expand Down

0 comments on commit e4f4c10

Please sign in to comment.