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 4801d71 commit ff4c75d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/datacore.dm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new)
departments += marines_by_squad
var/list/manifest_out = list()
for(var/record in GLOB.data_core.general)
var/datum/data/record/record_entry = GLOB.data_core.general[general] // I regret using associated lists for this.
var/datum/data/record/record_entry = GLOB.data_core.general[record] // I regret using associated lists for this.
if(record_entry.fields[MOB_REAL_FACTION] != FACTION_MARINE) //we process only USCM humans
continue
var/name = record_entry.fields[MOB_NAME]
Expand Down

0 comments on commit ff4c75d

Please sign in to comment.