actually handle append file modes

This commit is contained in:
Izaya 2023-06-07 00:12:15 +10:00
parent 1ef6d5db96
commit ddc2445104
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ function fs.open(path,mode) -- string string -- table -- Opens file *path* with
if mode:find("r") then
fobj.read = fread
end
if mode:find("w") then
if mode:find("w") or mode:find("a") then
fobj.write = fwrite
end
return fobj