sokoban.love/0190-next_stash_filename

10 lines
203 B
Plaintext

next_stash_filename = function(root)
local i = 1
while true do
local filename = root..'.'..tostring(i)
if not file_exists(Stash_directory..filename) then
return filename
end
i = i+1
end
end