Tell new users how to list possible commands.

This commit is contained in:
Deathsbreed 2014-11-18 11:44:46 -06:00
parent d19c6dccde
commit e4b9d9553a

View File

@ -219,6 +219,7 @@ public class Server implements Runnable {
clients.add(new ServerThread(this, socket));
try {
clients.get(clientCount).open();
clients.get(clientCount).send("Use /help for a list of commands.\n");
clients.get(clientCount).start();
clientCount++;
} catch(IOException e) {