Fix cache file name reference
This commit is contained in:
parent
a479572926
commit
a131df6d3d
@ -6,7 +6,7 @@ local Padding = require("gfx.padding")
|
|||||||
|
|
||||||
|
|
||||||
local CACHE_FILE = ".storage.cache"
|
local CACHE_FILE = ".storage.cache"
|
||||||
local LOCK_FILE = ".storage.lock"
|
LOCK_FILE = ".storage.lock"
|
||||||
|
|
||||||
local function lock()
|
local function lock()
|
||||||
if fs.exists(LOCK_FILE) then
|
if fs.exists(LOCK_FILE) then
|
||||||
@ -51,7 +51,7 @@ local function loadState(fname, node)
|
|||||||
file.close()
|
file.close()
|
||||||
return Storage:fromSerializable(ser)
|
return Storage:fromSerializable(ser)
|
||||||
end
|
end
|
||||||
controller = loadState(CACHE_FILE)
|
controller = loadState(fname)
|
||||||
end
|
end
|
||||||
|
|
||||||
if controller == nil then
|
if controller == nil then
|
||||||
@ -64,7 +64,7 @@ local function loadState(fname, node)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
controller = Storage:fromPeripherals(Storage.assumeHomogeneous(storageChests))
|
controller = Storage:fromPeripherals(Storage.assumeHomogeneous(storageChests))
|
||||||
saveState(controller, CACHE_FILE)
|
saveState(fname, controller)
|
||||||
end
|
end
|
||||||
return controller
|
return controller
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user