Skip to content

Commit

Permalink
Merge pull request #175 from 00-Steven/ohgodswhatthequirk
Browse files Browse the repository at this point in the history
Fixes a runtime issue involving character loading and languages.
  • Loading branch information
carpotoxin authored Oct 18, 2024
2 parents c4f78bc + 7099167 commit 2c11fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/client/preferences_savefile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
//Quirks
all_quirks = save_data?["all_quirks"]
/// DOPPLER SHIFT ADDITION BEGIN
var/list/save_languages = SANITIZE_LIST(save_data["languages"])
var/list/save_languages = SANITIZE_LIST(save_data?["languages"])
for(var/language in save_languages)
var/value = save_languages[language]
save_languages -= language
Expand Down

0 comments on commit 2c11fe9

Please sign in to comment.