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"; } } }