1
0
Fork 0
forked from swee/MeowNex

Fix cowsay

This commit is contained in:
swee 2024-11-10 00:51:01 -08:00
parent 390e098cf2
commit a959cdd07d

View file

@ -448,7 +448,7 @@ while True:
if not sbconfig.cflagexist(channel, "-multiline"): if not sbconfig.cflagexist(channel, "-multiline"):
if len(command) > 1: if len(command) > 1:
try: try:
system(['cowsay'] + command[1:], channel) system(['/usr/games/cowsay'] + command[1:], channel)
except Exception as ex: except Exception as ex:
irc.send_irc(channel, nick + ": " + ex.__class__.__name__) irc.send_irc(channel, nick + ": " + ex.__class__.__name__)
else: else: