Index: src/Connection.java
===================================================================
--- src/Connection.java	(revision 34ccb37911f839f63ad48d4f407209cebc3f5e6b)
+++ src/Connection.java	(revision 418ace20ea7871818b660b141f26c4ba12f8b3c1)
@@ -17,8 +17,8 @@
     private PrintWriter out;
     private BufferedReader in;
-    private String name;
+    private final int ID;
     
     
-    public Connection(String ip, int port, String threadName) {
+    public Connection(String ip, int port, String threadName,int ID) {
     	super(threadName);
     	
@@ -28,7 +28,8 @@
     	this.ip = ip;
     	this.port = port;
+    	this.ID = ID;
     }
     
-    public Connection(Socket socket, String threadName) {
+    public Connection(Socket socket, String threadName, int ID) {
     	super(threadName);
     	
@@ -36,4 +37,5 @@
     	interrupted = false;
     	this.socket = socket;
+    	this.ID = ID;
     }
     
Index: src/GameServer.java
===================================================================
--- src/GameServer.java	(revision 34ccb37911f839f63ad48d4f407209cebc3f5e6b)
+++ src/GameServer.java	(revision 418ace20ea7871818b660b141f26c4ba12f8b3c1)
@@ -16,5 +16,5 @@
 	
 	public void addConnection(Socket clientSocket) {
-		Connection temp = new Connection(clientSocket,"noob");
+		Connection temp = new Connection(clientSocket,"noob",1);
 		temp.start();
 		connections.add(temp);
