Quote Originally Posted by AndiPersti View Post
I don't see a line where you link the "next" pointer to another node in your list. Something like "current->next = ..."

Bye, Andreas
I see, for anyone who might search for this in the future..

I changed this:
Code:
while( current != NULL ){ 
                       current = current->next; 
               }//endwh 
               current = newPlayer;
to this:

Code:
while( current->next != NULL ){ 
                       current = current->next; 
               }//endwh 
               current->next = newPlayer;
And this works.