sorry travis

This commit is contained in:
timothyteakettle
2020-08-02 23:25:00 +01:00
parent c1f2ef3b38
commit 3740e40256
+2 -2
View File
@@ -205,7 +205,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
var/list/converted_paths = list()
for(var/datum/gear/i in saved_loadout_paths)
var/itemtype = copytext(i,13)
if(len(initial(i.ckeywhitelist)))
if(length(initial(i.ckeywhitelist)))
converted_paths += "/datum/gear/donator/[itemtype]"
else
switch(initial(i.slot))
@@ -229,7 +229,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
converted_paths += "/datum/gear/glasses/[itemtype]"
if(CATEGORY_BACKPACK)
converted_paths += "/datum/gear/backpack/[itemtype]"
S["loadout"] = converted_paths.join("|")
S["loadout"] = converted_paths.Join("|")
/datum/preferences/proc/load_path(ckey,filename="preferences.sav")