Avoid spamming #firemc #6

Closed
9pfs wants to merge 14 commits from 9pfs/FireBot:dont-spam-firemc into master
Showing only changes of commit b50a6aef00 - Show all commits

View file

@ -172,6 +172,10 @@ def PART(bot: bare.bot, msg: str) -> tuple[None, None]:
bot.channels.pop(channel, None)
return None, None
def QUIT(bot: bare.bot, msg: str) -> tuple[None, None]:
if bot.server == "replirc":
if msg.split("!", 1)[0][1:] == "FireMCBot":
bot.send("TOPIC #firemc :FireMC Relay channel (offline)\n")
Firepup650 marked this conversation as resolved
Review

Last line of the function MUST be return None, None, it'll crash otherwise.

Last line of the function _**MUST**_ be `return None, None`, it'll crash otherwise.
Review

Fixing

Fixing
def NULL(bot: bare.bot, msg: str) -> tuple[None, None]:
return None, None
@ -186,4 +190,5 @@ handles: dict[
"PART": PART,
"MODE": NULL,
"TOPIC": NULL,
"QUIT": QUIT
}