Debugging QUIT
This commit is contained in:
parent
c0bd1f4352
commit
0528f07a7d
3 changed files with 5 additions and 3 deletions
2
bot.py
2
bot.py
|
@ -286,7 +286,7 @@ class bot(bare.bot):
|
||||||
try:
|
try:
|
||||||
action = ircmsg.split(" ", 2)[1].strip()
|
action = ircmsg.split(" ", 2)[1].strip()
|
||||||
except IndexError:
|
except IndexError:
|
||||||
pass
|
self.log("Failed to detect message type!", "WARN")
|
||||||
self.tmpHost = ""
|
self.tmpHost = ""
|
||||||
if action in handlers.handles:
|
if action in handlers.handles:
|
||||||
res, chan = handlers.handles[action](self, ircmsg)
|
res, chan = handlers.handles[action](self, ircmsg)
|
||||||
|
|
|
@ -6,7 +6,7 @@ from typing import Optional, Any
|
||||||
import bare, pylast
|
import bare, pylast
|
||||||
|
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
__version__ = "v3.0.8"
|
__version__ = "v3.0.8-dev"
|
||||||
npbase: str = (
|
npbase: str = (
|
||||||
"\[\x0303last\.fm\x03\] [A-Za-z0-9_[\]{}\\|\-^]{1,$MAX} (is listening|last listened) to: \x02.+ - .*\x02( \([0-9]+ plays\)( \[.*\])?)?" # pyright: ignore [reportInvalidStringEscapeSequence]
|
"\[\x0303last\.fm\x03\] [A-Za-z0-9_[\]{}\\|\-^]{1,$MAX} (is listening|last listened) to: \x02.+ - .*\x02( \([0-9]+ plays\)( \[.*\])?)?" # pyright: ignore [reportInvalidStringEscapeSequence]
|
||||||
)
|
)
|
||||||
|
|
|
@ -174,7 +174,9 @@ def PART(bot: bare.bot, msg: str) -> tuple[None, None]:
|
||||||
|
|
||||||
def QUIT(bot: bare.bot, msg: str) -> tuple[None, None]:
|
def QUIT(bot: bare.bot, msg: str) -> tuple[None, None]:
|
||||||
if bot.server == "replirc":
|
if bot.server == "replirc":
|
||||||
if msg.split("!", 1)[0][1:] == "FireMCBot":
|
quitter = msg.split(" ", 2)[1].strip()
|
||||||
|
bot.log("Someone quit - " + quitter)
|
||||||
|
if quitter == "FireMCBot":
|
||||||
bot.send("TOPIC #firemc :FireMC Relay channel (offline)\n")
|
bot.send("TOPIC #firemc :FireMC Relay channel (offline)\n")
|
||||||
return None, None
|
return None, None
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue