Changeset 9804 for code/trunk
- Timestamp:
- Nov 21, 2013, 11:44:16 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/gametypes/SpaceRace.cc
r9667 r9804 55 55 void SpaceRace::end() 56 56 { 57 this->Gametype::end();58 59 57 this->clock_.capture(); 60 58 int s = this->clock_.getSeconds(); … … 72 70 + "." + multi_cast<std::string>(ms) + " seconds."; 73 71 } 74 75 this->getGametypeInfo()->sendAnnounceMessage(message); 76 ChatManager::message(message); 72 if (!this->hasEnded()) 73 { 74 this->getGametypeInfo()->sendAnnounceMessage(message); 75 ChatManager::message(message); 76 } 77 this->Gametype::end(); 77 78 } 78 79
Note: See TracChangeset
for help on using the changeset viewer.