summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDor Bivas <dor1_b@walla.com>2014-02-22 20:00:29 +0200
committerDor Bivas <dor1_b@walla.com>2014-02-22 20:00:29 +0200
commiteaf5f715500d64d1d72e3beeb11482720e1c119f (patch)
tree4ef3280c83e7eeb2bd98135c9c230498250064b7
parentbbd72aeabf72df8add3c098b8d0c3db673469fa5 (diff)
adding ": " to the privmsg
-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 f2e7537..ead56d9 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: " + starr[0] + line);
+ this.println(con.getClient(), "PRIVMSG " + starr[0] + " :" + line);
}
System.err.println("printed message to ports: " + ports);
}