- Timestamp:
- Oct 29, 2008, 12:48:11 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/LevelManager.cc
r2040 r2041 112 112 assert(!this->clients_[clientID]); 113 113 this->clients_[clientID] = player; 114 115 if (this->getActiveLevel()) 116 this->getActiveLevel()->playerEntered(player); 114 117 } 115 118 … … 121 124 PlayerInfo* player = this->clients_[clientID]; 122 125 this->clients_.erase(clientID); 126 127 if (this->getActiveLevel()) 128 this->getActiveLevel()->playerLeft(player); 123 129 124 130 // delete PlayerInfo instance
Note: See TracChangeset
for help on using the changeset viewer.