From c953962bd494a636753123e8f1d71216f4025a2a Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 6 Aug 2019 18:23:37 -0700 Subject: [PATCH] FactoidCommands: disable word-wrapping for `show -p` --- PBot/FactoidCommands.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/FactoidCommands.pm b/PBot/FactoidCommands.pm index 9113251e..42d5dde4 100644 --- a/PBot/FactoidCommands.pm +++ b/PBot/FactoidCommands.pm @@ -1170,7 +1170,7 @@ sub factshow { my $result = "$trigger_text: "; if ($paste) { - $result .= $self->{pbot}->{webpaste}->paste($factoids->{$channel}->{$trigger}->{action}); + $result .= $self->{pbot}->{webpaste}->paste($factoids->{$channel}->{$trigger}->{action}, no_split => 1); $channel = 'global' if $channel eq '.*'; $chan = 'global' if $chan eq '.*'; $result = "[$channel] $result" if $channel ne $chan;