Adds auto conversion of older backbag options to the new options.

Fixes erroneous indenting of species correction (Species correction should happen in ALL versions, not just those below version 9
This commit is contained in:
Remie Richards
2016-02-12 00:27:30 +00:00
parent 44b2344925
commit 8c9c061bd0
+11 -3
View File
@@ -166,9 +166,17 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
underwear = "Tankini"
if(13)
underwear = "Nude"
if(!(pref_species in species_list))
pref_species = new /datum/species/human()
return
if(!(pref_species in species_list))
pref_species = new /datum/species/human()
if(current_version < 13 || !istext(backbag))
switch(backbag)
if(2)
backbag = GSATCHEL
else
backbag = GBACKPACK
/datum/preferences/proc/load_path(ckey,filename="preferences.sav")
if(!ckey)