From 58f21b3bf71f45b0a263e35e30f537a0d38adc81 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 9 Sep 2017 22:32:14 -0700 Subject: [PATCH] Add newlines to ActionTrigger list --- PBot/Plugins/ActionTrigger.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PBot/Plugins/ActionTrigger.pm b/PBot/Plugins/ActionTrigger.pm index 2851dd52..f5ec8db3 100644 --- a/PBot/Plugins/ActionTrigger.pm +++ b/PBot/Plugins/ActionTrigger.pm @@ -187,11 +187,11 @@ sub actiontrigger { if (not @triggers) { $result = "No counter triggers set for $channel."; } else { - $result = "Triggers for $channel: "; + $result = "Triggers for $channel:\n"; my $comma = ''; foreach my $trigger (@triggers) { $result .= "$comma$trigger->{trigger} -> $trigger->{action}"; - $comma = ', '; + $comma = ",\n"; } } }