Manipulation of how Hangman is counting score.

This commit is contained in:
BaerbelBox
2022-04-02 13:35:14 +02:00
parent 7cf65ef092
commit 3114866135
2 changed files with 2 additions and 4 deletions

View File

@@ -288,7 +288,5 @@ class HangmanObserver(PrivMsgObserverPrototype):
def giveExtraPointsInTime(self, nick):
delta = time.time()-self.time
if delta <30:
self.addToScore(nick, 5)
if delta <60:
self.addToScore(nick, 5)
self.addToScore(nick,int((60-delta)/6))