Fix bug with mfs.load

This commit is contained in:
v 2020-12-29 10:18:01 +00:00
parent aa2e69d46f
commit 441e2a3fdb
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ function mfs.save(x,t)
end
function mfs.load(x)
return textutils.unserialize(mfs.read(cd.."/"..x) or "{}")
return textutils.unserialize(mfs.read(x) or "{}")
end
function mfs.rm(x)

View File

@ -1,5 +1,5 @@
{
["version"] = "0.1.4",
["version"] = "0.1.4-1",
["dependencies"] = {
},