This commit is contained in:
Nova Cat 2024-12-01 14:07:38 -08:00
parent 50d77db17a
commit eace6ea603

View file

@ -433,10 +433,10 @@ while True:
update() update()
elif command[0] == "$petpet" or command[0] == "$headpat": elif command[0] == "$petpet" or command[0] == "$headpat":
happiness += 1 happiness += (1 if happiness != 10 else 0)
multiline(choice(pats) + " (Emotion: Upset " + multiline(choice(pats) + " (Emotion: Upset " +
("#" * int(happiness)) + ("#" * int(happiness)) +
("-" * int(10-happiness)) + " Happy", ("-" * int(10-happiness)) + " Happy)",
channel) channel)