forked from swee/MeowNex
Update sweebot.py
This commit is contained in:
parent
cd9d40a9f2
commit
0d5357d33a
1 changed files with 2 additions and 1 deletions
|
@ -495,7 +495,8 @@ while True:
|
||||||
elif command[0] == "$botsnack":
|
elif command[0] == "$botsnack":
|
||||||
multiline(f"\x01ACTION eats some {choice(snacks)}\x01", channel)
|
multiline(f"\x01ACTION eats some {choice(snacks)}\x01", channel)
|
||||||
elif command[0] == "$hug":
|
elif command[0] == "$hug":
|
||||||
multiline(f"\x01ACTION gives a hug to {nick if not len(command) > 1 else " ".join(command[1:])}\x01", channel)
|
name = nick if not len(command) > 1 else " ".join(command[1:])
|
||||||
|
multiline(f"\x01ACTION gives a hug to {name}\x01", channel)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue