From 0ac20aa4b11596e0e9952cab4ebbc24fc8b402a2 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 21 May 2020 19:38:05 -0700 Subject: [PATCH] Commands: fix some cases in which $args would not expand --- PBot/Commands.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PBot/Commands.pm b/PBot/Commands.pm index 0e6c9fd7..922d3129 100644 --- a/PBot/Commands.pm +++ b/PBot/Commands.pm @@ -234,6 +234,7 @@ sub interpreter { $context->{action} = $context->{arguments}; $context->{arguments} = $self->{pbot}->{factoids}->expand_factoid_vars($context); + $context->{arglist} = $self->{pbot}->{interpreter}->make_args($context->{arguments}); delete $context->{action}; $context->{no_nickoverride} = 1;