fix accidental logging of understood messages

This commit is contained in:
jkhsjdhjs 2024-01-30 22:19:25 +00:00
parent 359407187e
commit e709a2ade1

View File

@ -280,11 +280,11 @@ def command_loop():
if ircmsg.find("PING :") != -1: if ircmsg.find("PING :") != -1:
pingstring = ircmsg.strip("PING :") pingstring = ircmsg.strip("PING :")
ping(pingstring) ping(pingstring)
if ircmsg.find("ERROR :Closing link") != -1: elif ircmsg.find("ERROR :Closing link") != -1:
print("Error. Lost Connection. Giving up!") print("Error. Lost Connection. Giving up!")
os._exit(1) os._exit(1)
break break
if ircmsg.find(" PRIVMSG ") != -1: elif ircmsg.find(" PRIVMSG ") != -1:
ircnick = ircmsg.split("!")[0][1:] ircnick = ircmsg.split("!")[0][1:]
channel = ircmsg.split(" PRIVMSG ", 1)[-1].split(" :", 1)[0] channel = ircmsg.split(" PRIVMSG ", 1)[-1].split(" :", 1)[0]
msg = ircmsg.split(channel+" :", 1)[1] msg = ircmsg.split(channel+" :", 1)[1]