unruntimes fdel on savefiles

This commit is contained in:
Jordie0608
2017-08-31 17:55:55 +10:00
parent 2580b81465
commit fda49fefe9
6 changed files with 9 additions and 9 deletions

View File

@@ -26,7 +26,7 @@ SUBSYSTEM_DEF(persistence)
var/savefile/secret_satchels = new /savefile("data/npc_saves/SecretSatchels.sav")
var/sav_text
secret_satchels[SSmapping.config.map_name] >> sav_text
fdel(secret_satchels)
fdel("data/npc_saves/SecretSatchels.sav")
if(sav_text)
old_secret_satchels = splittext(sav_text,"#")
if(old_secret_satchels.len >= 20)
@@ -79,7 +79,7 @@ SUBSYSTEM_DEF(persistence)
if(!saved_json)
return
saved_messages = json_decode(saved_json)
fdel(chisel_messages_sav)
fdel("data/npc_saves/ChiselMessages.sav")
else
var/json_file = file("data/npc_saves/ChiselMessages[SSmapping.config.map_name].json")
if(!fexists(json_file))
@@ -124,7 +124,7 @@ SUBSYSTEM_DEF(persistence)
if(!saved_json)
return
saved_trophies = json_decode(saved_json)
fdel(S)
fdel("data/npc_saves/TrophyItems.sav")
else
var/json_file = file("data/npc_saves/TrophyItems.json")
if(!fexists(json_file))

View File

@@ -42,13 +42,13 @@
..()
/mob/living/carbon/monkey/punpun/proc/Read_Memory()
if(fexists("data/npc_saves/Punpun.sav"))
if(fexists("data/npc_saves/Punpun.sav")) //legacy compatability to convert old format to new
var/savefile/S = new /savefile("data/npc_saves/Punpun.sav")
S["ancestor_name"] >> ancestor_name
S["ancestor_chain"] >> ancestor_chain
S["relic_hat"] >> relic_hat
S["relic_mask"] >> relic_mask
fdel(S)
fdel("data/npc_saves/Punpun.sav")
else
var/json_file = file("data/npc_saves/Punpun.json")
if(!fexists(json_file))

View File

@@ -115,7 +115,7 @@
if(fexists("data/npc_saves/Runtime.sav")) //legacy compatability to convert old format to new
var/savefile/S = new /savefile("data/npc_saves/Runtime.sav")
S["family"] >> family
fdel(S)
fdel("data/npc_saves/Runtime.sav")
else
var/json_file = file("data/npc_saves/Runtime.json")
if(!fexists(json_file))

View File

@@ -332,7 +332,7 @@
S["age"] >> age
S["record_age"] >> record_age
S["saved_head"] >> saved_head
fdel(S)
fdel("data/npc_saves/Ian.sav")
else
var/json_file = file("data/npc_saves/Ian.json")
if(!fexists(json_file))

View File

@@ -292,7 +292,7 @@ Difficulty: Very Hard
if(fexists("data/npc_saves/Blackbox.sav")) //legacy compatability to convert old format to new
var/savefile/S = new /savefile("data/npc_saves/Blackbox.sav")
S["stored_items"] >> stored_items
fdel(S)
fdel("data/npc_saves/Blackbox.sav")
else
var/json_file = file("data/npc_saves/Blackbox.json")
if(!fexists(json_file))

View File

@@ -929,7 +929,7 @@
S["roundssurvived"] >> rounds_survived
S["longestsurvival"] >> longest_survival
S["longestdeathstreak"] >> longest_deathstreak
fdel(S)
fdel("data/npc_saves/Poly.sav")
else
var/json_file = file("data/npc_saves/Poly.json")
if(!fexists(json_file))