mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-30 07:59:42 +01:00
Add unban-queue option to unban
usage message
This commit is contained in:
parent
7e9c116712
commit
39c9efd7d1
@ -109,13 +109,13 @@ sub unban_user {
|
|||||||
my ($target, $channel, $immediately) = split /\s+/, $arguments;
|
my ($target, $channel, $immediately) = split /\s+/, $arguments;
|
||||||
|
|
||||||
if(not defined $target) {
|
if(not defined $target) {
|
||||||
return "/msg $nick Usage: unban <mask> [channel]";
|
return "/msg $nick Usage: unban <mask> [[channel] [true value to use unban queue]]";
|
||||||
}
|
}
|
||||||
|
|
||||||
$channel = $from if not defined $channel;
|
$channel = $from if not defined $channel;
|
||||||
$immediately = 1 if not defined $immediately;
|
$immediately = 1 if not defined $immediately;
|
||||||
|
|
||||||
return "/msg $nick Usage for /msg: unban <nick/mask> <channel>" if $channel !~ /^#/;
|
return "/msg $nick Usage for /msg: unban <nick/mask> <channel> [true value to use unban queue]" if $channel !~ /^#/;
|
||||||
|
|
||||||
if (not $self->{pbot}->{admins}->loggedin($channel, "$nick!$user\@$host")) {
|
if (not $self->{pbot}->{admins}->loggedin($channel, "$nick!$user\@$host")) {
|
||||||
return "/msg $nick You are not an admin for $channel.";
|
return "/msg $nick You are not an admin for $channel.";
|
||||||
|
Loading…
Reference in New Issue
Block a user