mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
removed the '/' in command()
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2915 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
43201b2e9c
commit
3f57df52c8
@ -64,7 +64,7 @@ sub autoop {
|
|||||||
|
|
||||||
if (!$temp_opped{$nick} &&
|
if (!$temp_opped{$nick} &&
|
||||||
$server->masks_match($masks, $nick, $host)) {
|
$server->masks_match($masks, $nick, $host)) {
|
||||||
$channel->command("/op $nick");
|
$channel->command("op $nick");
|
||||||
$temp_opped{$nick} = 1;
|
$temp_opped{$nick} = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -113,7 +113,7 @@ sub mlock_check_mode {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($modecmd ne "") {
|
if ($modecmd ne "") {
|
||||||
$channel->{server}->command("/mode $channame $modecmd$extracmd");
|
$channel->{server}->command("mode $channame $modecmd$extracmd");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ sub cmd_quit {
|
|||||||
close(f);
|
close(f);
|
||||||
|
|
||||||
foreach my $server (Irssi::servers) {
|
foreach my $server (Irssi::servers) {
|
||||||
$server->command("/disconnect ".$server->{tag}." $quitmsg");
|
$server->command("disconnect ".$server->{tag}." $quitmsg");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user