From eace6ea603274de0497126b22c98a48aec0eb3e5 Mon Sep 17 00:00:00 2001 From: Nova Cat Date: Sun, 1 Dec 2024 14:07:38 -0800 Subject: [PATCH] e --- sweebot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)