mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-17 01:19:31 +01:00
Factoids: don't add nick if add_nick
defined and set to 0
This commit is contained in:
parent
54ef6b14ce
commit
12ec8bb77c
@ -358,7 +358,10 @@ sub handle_action($self, $context, $action) {
|
||||
my $target = $self->{pbot}->{nicklist}->is_present_similar($context->{from}, $context->{arguments});
|
||||
|
||||
if ($target and $action !~ /\$\{?(?:nick|args)\b/) {
|
||||
$context->{nickprefix} = $target unless $context->{nickprefix_forced};
|
||||
my $add_nick = $self->{pbot}->{factoids}->{data}->{storage}->get_data($channel, $keyword, 'add_nick');
|
||||
unless (defined $add_nick && $add_nick == 0) {
|
||||
$context->{nickprefix} = $target unless $context->{nickprefix_forced};
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -25,8 +25,8 @@ use PBot::Imports;
|
||||
# These are set by the /misc/update_version script
|
||||
use constant {
|
||||
BUILD_NAME => "PBot",
|
||||
BUILD_REVISION => 4839,
|
||||
BUILD_DATE => "2024-11-05",
|
||||
BUILD_REVISION => 4840,
|
||||
BUILD_DATE => "2024-11-06",
|
||||
};
|
||||
|
||||
sub initialize {}
|
||||
|
Loading…
Reference in New Issue
Block a user