forgot
This commit is contained in:
parent
5a75e276bb
commit
eec4d685a9
1 changed files with 2 additions and 2 deletions
|
@ -450,9 +450,9 @@ while True:
|
|||
elif command[0] == "$bap":
|
||||
if len(command) == 2:
|
||||
for i in range(0,int(command[1])):
|
||||
happiness -= (1 if happiness != 10 else 0)
|
||||
happiness -= (1 if happiness != 0 else 0)
|
||||
elif len(command) == 1:
|
||||
happiness -= (1 if happiness != 10 else 0)
|
||||
happiness -= (1 if happiness != 0 else 0)
|
||||
multiline(choice(baps) + " (Emotion: Upset " +
|
||||
("#" * int(happiness)) +
|
||||
("-" * int(10-happiness)) + " Happy)",
|
||||
|
|
Loading…
Reference in a new issue