From 3f57df52c895a442fa81808afa98761f1739ef8b Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 11 Sep 2002 23:26:46 +0000 Subject: [PATCH] removed the '/' in command() git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2915 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- scripts/autoop.pl | 2 +- scripts/mlock.pl | 2 +- scripts/quitmsg.pl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/autoop.pl b/scripts/autoop.pl index d46d099e..f7182999 100644 --- a/scripts/autoop.pl +++ b/scripts/autoop.pl @@ -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; } } diff --git a/scripts/mlock.pl b/scripts/mlock.pl index bf2fd002..ed2fe52b 100644 --- a/scripts/mlock.pl +++ b/scripts/mlock.pl @@ -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"); } } diff --git a/scripts/quitmsg.pl b/scripts/quitmsg.pl index 5fd4c6ce..41bddaa8 100644 --- a/scripts/quitmsg.pl +++ b/scripts/quitmsg.pl @@ -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"); } }