diff --git a/sweebot.py b/sweebot.py index 291377e..ba654c1 100644 --- a/sweebot.py +++ b/sweebot.py @@ -433,10 +433,10 @@ while True: update() elif command[0] == "$petpet" or command[0] == "$headpat": - happiness += 1 + happiness += (1 if happiness != 10 else 0) multiline(choice(pats) + " (Emotion: Upset " + ("#" * int(happiness)) + - ("-" * int(10-happiness)) + " Happy", + ("-" * int(10-happiness)) + " Happy)", channel)