From 8efc8e6ed2ddf1d85659995490dabf8d471e9357 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 15 Sep 2020 18:35:36 -0400 Subject: [PATCH] Forgot to push the new scoreboard code. --- monkeyspank | 1 + 1 file changed, 1 insertion(+) diff --git a/monkeyspank b/monkeyspank index 0333438..7a885ba 100755 --- a/monkeyspank +++ b/monkeyspank @@ -119,6 +119,7 @@ def game(mode): message = ["You spanked the monkey " + str(spanks) + " "] if spanks == 1: message[0] += "time." if spanks != 1: message[0] += "times." + if score.New_High_Score() != None: message.append("Congratulations! you beat the score at position " + str(score.New_High_Score()) + ".") message.append("Your total time was " + str(round(totalTime - startTime, 2)) + " seconds.") try: message.append("You averaged " + str(round(spanks / (totalTime - startTime), 2)) + " monkey spanks per second.")