summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordor <dor1_b@walla.com>2014-03-14 21:09:39 +0200
committerTzafrir Cohen <tzafrir@cohens.org.il>2014-03-16 03:06:05 +0200
commit8cda9086b038b0c0e1e778acb7139c2742b10ae4 (patch)
tree2429a869e2a6c71b5974d7f60b9331eafd568b40
parent15d7897ae785e9984525fafc433587b82475932d (diff)
Server: fix join msg
-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 d9b4110..4ae3651 100644
--- a/src/Server/CommandsTable.java
+++ b/src/Server/CommandsTable.java
@@ -113,7 +113,7 @@ class CommandJoin extends Command
{
// FIXME : parse args to channel names and save client state
// but right now everybody is on a single channel
- this.printUser(client, "JOIN " + ":" + args);
+ this.printUser(client, " JOIN " + ":" + args);
this.println(client, "332 " + client.getNick() + " " + args + " :Welcome to the single channel");
//this.println(client, "333 " + client.getNick()) + args + "someone!somewhere";
}