mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-25 04:02:37 +01:00
Make fact log of factset more concise
This commit is contained in:
parent
ca827a1499
commit
80bceb2c75
@ -341,8 +341,6 @@ sub factset {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
my $oldvalue;
|
|
||||||
|
|
||||||
if(defined $owner_channel) {
|
if(defined $owner_channel) {
|
||||||
my $factoid = $self->{pbot}->{factoids}->{factoids}->hash->{$owner_channel}->{$owner_trigger};
|
my $factoid = $self->{pbot}->{factoids}->{factoids}->hash->{$owner_channel}->{$owner_trigger};
|
||||||
|
|
||||||
@ -351,18 +349,12 @@ sub factset {
|
|||||||
if(lc $nick ne lc $owner and $level == 0) {
|
if(lc $nick ne lc $owner and $level == 0) {
|
||||||
return "You are not the owner of $trigger.";
|
return "You are not the owner of $trigger.";
|
||||||
}
|
}
|
||||||
|
|
||||||
$oldvalue = $self->{pbot}->{factoids}->{factoids}->hash->{$channel}->{$trigger}->{$key};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
my $result = $self->{pbot}->{factoids}->{factoids}->set($channel, $trigger, $key, $value);
|
my $result = $self->{pbot}->{factoids}->{factoids}->set($channel, $trigger, $key, $value);
|
||||||
|
|
||||||
if (defined $value and $result =~ m/set to/) {
|
if (defined $value and $result =~ m/set to/) {
|
||||||
if (defined $oldvalue and $oldvalue ne $value) {
|
$self->log_factoid($channel, $trigger, "$nick!$user\@$host", "set $key to $value");
|
||||||
$self->log_factoid($channel, $trigger, "$nick!$user\@$host", "set $key from $oldvalue to $value");
|
|
||||||
} else {
|
|
||||||
$self->log_factoid($channel, $trigger, "$nick!$user\@$host", "set $key to $value");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
|
Loading…
Reference in New Issue
Block a user