1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04: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:
Timo Sirainen 2002-09-11 23:26:46 +00:00 committed by cras
parent 43201b2e9c
commit 3f57df52c8
3 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ sub autoop {
if (!$temp_opped{$nick} &&
$server->masks_match($masks, $nick, $host)) {
$channel->command("/op $nick");
$channel->command("op $nick");
$temp_opped{$nick} = 1;
}
}

View File

@ -113,7 +113,7 @@ sub mlock_check_mode {
}
if ($modecmd ne "") {
$channel->{server}->command("/mode $channame $modecmd$extracmd");
$channel->{server}->command("mode $channame $modecmd$extracmd");
}
}

View File

@ -38,7 +38,7 @@ sub cmd_quit {
close(f);
foreach my $server (Irssi::servers) {
$server->command("/disconnect ".$server->{tag}." $quitmsg");
$server->command("disconnect ".$server->{tag}." $quitmsg");
}
}