From aac788831a6db82db3bf0fee135e34ac05f6dec3 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 21 Feb 2017 05:26:26 -0800 Subject: [PATCH] Only one punishment per message! --- PBot/Plugins/AntiTwitter.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PBot/Plugins/AntiTwitter.pm b/PBot/Plugins/AntiTwitter.pm index 4766d805..3f863284 100644 --- a/PBot/Plugins/AntiTwitter.pm +++ b/PBot/Plugins/AntiTwitter.pm @@ -58,6 +58,7 @@ sub on_public { $event->{conn}->privmsg($nick, "$nick: Please do not use \@nick to address people. Drop the @ symbol; it's not necessary and it's ugly. You were warned. You will be allowed to speak again in $length."); } } + last; } } return 0;