We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18803bd commit 2507b22Copy full SHA for 2507b22
scenes/loadingScene.lua
@@ -52,7 +52,9 @@ function VersionCheck()
52
--delete existing files
53
local img_path = system.pathForFile("", system.DocumentsDirectory)
54
for file in lfs.dir(img_path) do
55
- os.remove(system.pathForFile(file, system.DocumentsDirectory))
+ if EndsWith(file, "png") then
56
+ os.remove(system.pathForFile(file, system.DocumentsDirectory))
57
+ end
58
end
59
GetAllCreatureImages()
60
dataVersions.artDataVersion = version
0 commit comments