mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-20 10:59:29 +01:00
Plugins/RestrictMod: improve error message for unban/unmute
This commit is contained in:
parent
e8e26512bc
commit
9b806559cb
@ -95,7 +95,7 @@ sub generic_command {
|
|||||||
$self->{pbot}->{chanops}->unban_user($target, $channel, 1);
|
$self->{pbot}->{chanops}->unban_user($target, $channel, 1);
|
||||||
return "";
|
return "";
|
||||||
} else {
|
} else {
|
||||||
return "I don't think so. This command can unban only bans set by moderators.";
|
return "I don't think so. That ban was not set by a moderator.";
|
||||||
}
|
}
|
||||||
} elsif ($command eq 'unmute') {
|
} elsif ($command eq 'unmute') {
|
||||||
my $reason = $self->{pbot}->{chanops}->checkmute($channel, $target);
|
my $reason = $self->{pbot}->{chanops}->checkmute($channel, $target);
|
||||||
@ -103,7 +103,7 @@ sub generic_command {
|
|||||||
$self->{pbot}->{chanops}->unmute_user($target, $channel, 1);
|
$self->{pbot}->{chanops}->unmute_user($target, $channel, 1);
|
||||||
return "";
|
return "";
|
||||||
} else {
|
} else {
|
||||||
return "I don't think so. This command can unmute only mutes set by moderators.";
|
return "I don't think so. That mute was not set by a moderator.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user