Skip to content

Commit

Permalink
no longer needs develop version of dome
Browse files Browse the repository at this point in the history
  • Loading branch information
whmsft committed Jun 10, 2022
1 parent 302a3ca commit 9f1d9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.wren
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var GAME = "boot" // modes: boot, play, over
var DATA = ""
var HIGHSCORE = 0

if (FileSystem.doesFileExist(".data")) {
if (FileSystem.listFiles("./").contains(".data")) {
DATA = FileSystem.load(".data")
HIGHSCORE = Num.fromString(DATA[1..4])
} else {
Expand Down

0 comments on commit 9f1d9c2

Please sign in to comment.