We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6164449 commit e6d63d7Copy full SHA for e6d63d7
2 files changed
Minesweep/code.py
@@ -231,9 +231,9 @@ def win():
231
print('You won')
232
wait_for_sound_and_cleanup(play_sound('win.wav'))
233
234
-def loose():
+def lose():
235
print('You lost')
236
- wavfile = play_sound('loose.wav')
+ wavfile = play_sound('lose.wav')
237
for _ in range(10):
238
tilegrid.x = randint(-2, 2)
239
tilegrid.y = randint(-2, 2)
@@ -249,5 +249,5 @@ def loose():
249
win()
250
else:
251
reveal()
252
- loose()
+ lose()
253
time.sleep(5.0)
Minesweep/loose.wav Minesweep/lose.wavMinesweep/loose.wav renamed to Minesweep/lose.wav
0 commit comments