Plugins/Plang: fix add_factoid()

This commit is contained in:
Pragmatic Software 2021-08-02 18:06:50 -07:00
parent f286ff44a0
commit 4c5492f5e9
2 changed files with 3 additions and 3 deletions

View File

@ -189,7 +189,7 @@ sub plang_builtin_factset {
my ($self, $plang, $context, $name, $arguments) = @_;
my ($channel, $keyword, $text) = ($arguments->[0]->[1], $arguments->[1]->[1], $arguments->[2]->[1]);
die "Factoid $channel.$keyword is locked. Cannot set.\n" if $self->is_locked($channel, $keyword);
$self->{pbot}->{factoids}->{data}->add_factoid('text', $channel, 'Plang', $keyword, $text);
$self->{pbot}->{factoids}->{data}->add('text', $channel, 'Plang', $keyword, $text);
return [['TYPE', 'String'], $text];
}
@ -204,7 +204,7 @@ sub plang_builtin_factappend {
my $action = $self->{pbot}->{factoids}->{data}->get_meta($channel, $keyword, 'action');
$action = "" if not defined $action;
$action .= $text;
$self->{pbot}->{factoids}->{data}->add_factoid('text', $channel, 'Plang', $keyword, $action);
$self->{pbot}->{factoids}->{data}->add('text', $channel, 'Plang', $keyword, $action);
return [['TYPE', 'String'], $action];
}

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4339,
BUILD_REVISION => 4340,
BUILD_DATE => "2021-08-02",
};