Fix direct message function

This commit is contained in:
Jamie Cameron
2013-04-25 20:00:40 -07:00
parent 8bd954bc53
commit da7ec06cde

View File

@@ -12,7 +12,7 @@ my $msg;
if ($in{'msg'}) {
# Send a message
$in{'text'} =~ /\S/ || &error($text{'conn_etext'});
&send_server_command("/say $in{'name'} $in{'text'}");
&send_server_command("/msg $in{'name'} $in{'text'}");
$msg = $text{'conn_msgdone'};
}
elsif ($in{'kill'}) {