Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Do not reply to notices
If we ignore private messages, we should ignore notices as well.
Hoping to resolve this issue soon though.
  • Loading branch information
AlexDaniel committed Oct 29, 2016
1 parent 98c9c73 commit 8fc3153
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Whateverable.pm6
Expand Up @@ -75,6 +75,10 @@ multi method irc-to-me($msg where .text ~~ /:i^ help ‘?’? $/) {
ResponseStr.new(value => self.help($msg), message => $msg)
}

multi method irc-notice-me($msg) {
ResponseStr.new(value => Sorry, it is too private here, message => $msg) # See GitHub issue #16
}

multi method irc-privmsg-me($msg) {
ResponseStr.new(value => Sorry, it is too private here, message => $msg) # See GitHub issue #16
}
Expand Down

0 comments on commit 8fc3153

Please sign in to comment.