summaryrefslogtreecommitdiff
path: root/src/Server
diff options
context:
space:
mode:
authorDor Bivas <dor1_b@walla.com>2014-02-05 00:40:49 +0200
committerDor Bivas <dor1_b@walla.com>2014-02-05 00:40:49 +0200
commitb63b2f3b7f48abfb0cd14a4407d38e84f5b7ee38 (patch)
tree2608acfaea22a1e32650f400af6ddcd715a666a6 /src/Server
parent936dd6cd426c1ca907427a0548cfc2cb74d036c4 (diff)
Fixing PrivMsg chanel output
Diffstat (limited to 'src/Server')
-rw-r--r--src/Server/CommandsTable.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server/CommandsTable.java b/src/Server/CommandsTable.java
index f0152e2..05d5457 100644
--- a/src/Server/CommandsTable.java
+++ b/src/Server/CommandsTable.java
@@ -80,7 +80,7 @@ class CommandPrivmsg extends Command
{
Connection con = iter.next();
ports += con.toString();
- this.println(con.getClient(), "PRIVMSG #fixme-chan :" + line);
+ this.println(con.getClient(), "PRIVMSG: " + starr[0] + line);
}
System.err.println("printed message to ports: " + ports);
}