diff --git a/src/wolfgame.py b/src/wolfgame.py index 61a89f0..909417a 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -676,6 +676,12 @@ def mark_prefer_notice(cli, nick, chan, rest): """Makes the bot NOTICE you for every interaction.""" nick, _, ident, host = parse_nick(nick) + + if chan == "nick" and rest: + # Ignore if called in PM with parameters, likely a message to wolfchat + # and not an intentional invocation of this command + return + if nick in var.USERS: ident = var.USERS[nick]["ident"] host = var.USERS[nick]["host"]