Changeset 9528 in orxonox.OLD for branches/proxy/src/lib
- Timestamp:
- Jul 27, 2006, 9:30:14 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/message_manager.cc
r9527 r9528 245 245 246 246 // find out if this message is addressed for this client too 247 if( messageType == RT_ALL_BUT_ME||248 messageType == RT_ALL_ME ||249 messageType == RT_NOT_USER && SharedNetworkData::getInstance()->getHostID() != destinationId ||250 messageType == RT_USER && SharedNetworkData::getInstance()->getHostID() == destinationId ||251 messageType == RT_SERVER && SharedNetworkData::getInstance()->isMasterServer())247 if( recieverType == RT_ALL_BUT_ME && SharedNetworkData::getInstance()->getHostID() != destinationId || 248 recieverType == RT_ALL_ME || 249 recieverType == RT_NOT_USER && SharedNetworkData::getInstance()->getHostID() != destinationId || 250 recieverType == RT_USER && SharedNetworkData::getInstance()->getHostID() == destinationId || 251 recieverType == RT_SERVER && SharedNetworkData::getInstance()->isMasterServer()) 252 252 { 253 253
Note: See TracChangeset
for help on using the changeset viewer.