- Timestamp:
- Jan 30, 2006, 3:58:41 PM (19 years ago)
- Location:
- branches/network/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/playable.cc
r6861 r6866 40 40 41 41 this->bFire = false; 42 this->oldFlags = 0; 42 43 43 44 this->setSynchronized(true); -
branches/network/src/world_entities/space_ships/space_ship.cc
r6861 r6866 639 639 *reciever = 0; 640 640 641 if ( this->getOwner() == this->getHostID() && PNode::needsReadSync() )641 if ( ( this->getHostID()==0 || this->getOwner() == this->getHostID() ) && PNode::needsReadSync() ) 642 642 { 643 643 SYNCHELP_WRITE_BYTE( DATA_sync, NWT_SS_B ); … … 645 645 } 646 646 647 if ( this->getHostID()== this->getOwner() )647 if ( this->getHostID()==0 || this->getHostID()==this->getOwner() ) 648 648 { 649 649 byte mask = 0;
Note: See TracChangeset
for help on using the changeset viewer.