Changeset 5820 for code/branches/core5/src/orxonox
- Timestamp:
- Sep 28, 2009, 2:55:47 AM (15 years ago)
- Location:
- code/branches/core5/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/orxonox/LevelManager.cc
r5738 r5820 39 39 #include "PlayerManager.h" 40 40 #include "Level.h" 41 #include "infos/HumanPlayer.h"42 41 43 42 namespace orxonox -
code/branches/core5/src/orxonox/PlayerManager.cc
r5801 r5820 74 74 if (GameMode::isMaster()) 75 75 { 76 COUT(3) << "client disconnected" << std::endl; 76 if (clientID != 0) 77 COUT(3) << "client disconnected" << std::endl; 77 78 78 79 // remove from clients-map -
code/branches/core5/src/orxonox/PlayerManager.h
r3370 r5820 50 50 { return this->clients_; } 51 51 52 private:53 52 void clientConnected(unsigned int clientID); 54 53 void clientDisconnected(unsigned int clientID); 55 54 55 private: 56 56 std::map<unsigned int, PlayerInfo*> clients_; 57 57
Note: See TracChangeset
for help on using the changeset viewer.