Skip to content

Commit

Permalink
runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
DOOM authored and DOOM committed May 24, 2024
1 parent 1a3a29b commit 4801d71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/datums/datacore.dm
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new)
var/dept_flags = NO_FLAGS //Is there anybody in the department?.
var/list/squad_sublists = GLOB.ROLES_SQUAD_ALL.Copy() //Are there any marines in the squad?

for(var/datum/data/record/record_entry in GLOB.data_core.general)
for(var/entry in GLOB.data_core.general)
var/datum/data/record/record_entry = GLOB.data_core.general[entry]
if(record_entry.fields[MOB_REAL_FACTION] != FACTION_MARINE) //we process only USCM humans
continue

Expand Down

0 comments on commit 4801d71

Please sign in to comment.