Changeset 9396 in orxonox.OLD for branches/proxy/src/util
- Timestamp:
- Jul 23, 2006, 10:07:23 PM (18 years ago)
- Location:
- branches/proxy/src/util
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/util/game_rules.cc
r9387 r9396 87 87 void GameRules::registerKill(const Kill& kill) 88 88 { 89 if ( !SharedNetworkData::getInstance()->isMasterServer() )89 if ( SharedNetworkData::getInstance()->isClient() ) 90 90 return; 91 91 -
branches/proxy/src/util/kill_target.cc
r9357 r9396 56 56 57 57 58 MissionState KillTarget::checkMissionGoal(float dt) {} 58 MissionState KillTarget::checkMissionGoal(float dt) 59 { 59 60 61 } 62 -
branches/proxy/src/util/multiplayer_team_deathmatch.cc
r9371 r9396 204 204 assignPlayable(); 205 205 206 if ( !SharedNetworkData::getInstance()->isMasterServer() )206 if ( SharedNetworkData::getInstance()->isClient() ) 207 207 return; 208 208 … … 268 268 void MultiplayerTeamDeathmatch::checkGameRules() 269 269 { 270 if ( !SharedNetworkData::getInstance()->isMasterServer() )270 if ( SharedNetworkData::getInstance()->isClient() ) 271 271 return; 272 272
Note: See TracChangeset
for help on using the changeset viewer.