Fix cache file name reference

This commit is contained in:
Gabriel Tofvesson 2024-10-04 00:43:13 +02:00
parent a479572926
commit a131df6d3d

View File

@ -6,7 +6,7 @@ local Padding = require("gfx.padding")
local CACHE_FILE = ".storage.cache"
local LOCK_FILE = ".storage.lock"
LOCK_FILE = ".storage.lock"
local function lock()
if fs.exists(LOCK_FILE) then
@ -51,7 +51,7 @@ local function loadState(fname, node)
file.close()
return Storage:fromSerializable(ser)
end
controller = loadState(CACHE_FILE)
controller = loadState(fname)
end
if controller == nil then
@ -64,7 +64,7 @@ local function loadState(fname, node)
end
end
controller = Storage:fromPeripherals(Storage.assumeHomogeneous(storageChests))
saveState(controller, CACHE_FILE)
saveState(fname, controller)
end
return controller
end