fix: reload stats and puzzle

This commit is contained in:
2025-11-28 21:15:33 +01:00
parent 080f2b51c7
commit d2752a04b6
3 changed files with 13 additions and 3 deletions

View File

@@ -70,4 +70,12 @@ function utils.waitForKey(targetKey)
end
end
function utils.splitLines(data)
local t = {}
for str in string.gmatch(data, "([^\n]+)") do
table.insert(t, str)
end
return t
end
return utils