]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/hash.cpp
updated the Change log w/ new additions
[irc/gameservirc.git] / gameserv / hash.cpp
index 9c6b12204c29dbb46ac7c8a7558774268fb7e2b5..fef9146aead29dbc1c39019f66363619b191216b 100644 (file)
@@ -1,10 +1,10 @@
-#include "item.h"
 #include "extern.h"
+#include "aClient.h"
 #include <ctype.h>
 
 unsigned long sHASH(const unsigned char *name);
 unsigned long iHASH(const unsigned char *name);
-List<aClient> players[U_TABLE_SIZE];
+list<Player*> players[U_TABLE_SIZE];
 
 unsigned long sHASH(const unsigned char *name)
 {
@@ -33,5 +33,3 @@ unsigned long iHASH(const unsigned char *name)
   }
   return h % U_TABLE_SIZE;
 }
-
-