Index: server/server.cpp
===================================================================
--- server/server.cpp	(revision 41ad8ed6bf5a6a22991206566960ac4dfd83c276)
+++ server/server.cpp	(revision cbc595dd131d6db74f170c0777eaaa3d1eb055f6)
@@ -40,14 +40,10 @@
    vector<Player>::iterator it;
 
-   cout << "Entered findPlayerByName" << endl;
-
    for (it = vec.begin(); it != vec.end(); it++)
    {
-      cout << "Comparing name" << endl;
       if ( it->name.compare(name) == 0 )
          return &(*it);
    }
 
-   cout << "About to return" << endl;
    return NULL;
 }
@@ -79,11 +75,10 @@
    int sock, length, n;
    struct sockaddr_in server;
-   struct sockaddr_in from; // holds the info on the connected client
+   struct sockaddr_in from; // holds the info about the connected client
    NETWORK_MSG clientMsg, serverMsg;
    vector<Player> vctPlayers;
 
    srand(time(NULL));
-   int num = 500;
-   //int num = (rand() % 0) + 1;
+   int num = (rand() % 1000) + 1;
 
    cout << "num: " << num << endl;
@@ -172,9 +167,4 @@
          if (p == NULL || p->password != password)
          {
-            if (p != NULL)
-            {
-               cout << "p->password: " << p->password << endl;
-               cout << "password: " << password << endl;
-            }
             strcpy(serverMsg.buffer, "Incorrect username or password");
          }
