Skip to content
Snippets Groups Projects
Commit 1e8d8e01 authored by Adriel Nuqui's avatar Adriel Nuqui
Browse files

Bug fixes

parent 1e622804
No related branches found
No related tags found
No related merge requests found
index,name,seconds
\ No newline at end of file
index,name,seconds
\ No newline at end of file
...@@ -400,6 +400,9 @@ def main(): ...@@ -400,6 +400,9 @@ def main():
print() print()
print("WELL DONE! You have completed the escape room.") print("WELL DONE! You have completed the escape room.")
print('You took', minutes, 'minutes and', seconds, 'seconds.') print('You took', minutes, 'minutes and', seconds, 'seconds.')
lvl2seconds = (minutes * 60) + seconds
append_leaderboard(lvl2seconds, 'Timeslvl2.csv')
print() print()
break break
......
...@@ -76,4 +76,4 @@ def append_leaderboard(seconds_used,filename): #time_used = 20 minutes - time r ...@@ -76,4 +76,4 @@ def append_leaderboard(seconds_used,filename): #time_used = 20 minutes - time r
#Returns back to game.py #Returns back to game.py
append_leaderboard(244, 'Timeslvl2.csv')
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment