From 2c7fbb601b67e135deedaf61db8f47d44207364d Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 7 Nov 2023 08:02:05 -0600 Subject: [PATCH] ...And I need to make it "self" calls --- bot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot.py b/bot.py index 652ab54..c053caf 100644 --- a/bot.py +++ b/bot.py @@ -305,8 +305,8 @@ class bot: mm.close() else: if ircmsg.startswith("PING "): - ping(ircmsg) + self.ping(ircmsg) elif ircmsg.startswith("ERROR :Closing Link"): - exit("I got killed :'(") + self.exit("I got killed :'(") elif ircmsg.startswith("ERROR :Ping "): - exit("Ping timeout") + self.exit("Ping timeout")