summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDor Bivas <dor1_b@walla.com>2014-02-08 13:16:57 +0200
committerDor Bivas <dor1_b@walla.com>2014-02-08 13:19:08 +0200
commit32f50164d91cc44c4b1790ab9de15fa8654c1f10 (patch)
tree7212c31311512b7a39710f7fa62eec2fe3f9caec
parentbdd601542575c73e4f90d57431f1b9a7d8f2b0c0 (diff)
Changing name of the initial nick and server name.
-rw-r--r--src/Client/ChatClient.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Client/ChatClient.java b/src/Client/ChatClient.java
index bcc5612..80ed663 100644
--- a/src/Client/ChatClient.java
+++ b/src/Client/ChatClient.java
@@ -73,7 +73,7 @@ public class ChatClient
else
{
- runSendline("PRIVMSG " + "#chat-dor : " + line);
+ runSendline("PRIVMSG " + "#Chat-Dor : " + line);
}
}
@@ -115,12 +115,9 @@ public class ChatClient
public static void main(String[] args) throws IOException
{
ChatClient client = new ChatClient();
- client.setNick("dor");
+ client.setNick("Dor");
client.setRealname("Dor bivas");
client.ui = new UserInterface(client);
-
-
- //soc.close();
}
}