Changeset 9625 in orxonox.OLD for branches/proxy/src/world_entities/npcs
- Timestamp:
- Jul 30, 2006, 11:19:24 PM (18 years ago)
- Location:
- branches/proxy/src/world_entities/npcs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/world_entities/npcs/network_turret.cc
r9619 r9625 84 84 this->targetGroup = OM_GROUP_01; 85 85 this->targetGroup_write = OM_GROUP_01; 86 this->targetGroup_handle = this->registerVarId( new SynchronizeableInt ( &targetGroup, &targetGroup_write, "targetgroup" ) );86 this->targetGroup_handle = this->registerVarId( new SynchronizeableInt ( &targetGroup, &targetGroup_write, "targetgroup", PERMISSION_MASTER_SERVER ) ); 87 87 88 88 this->setSynchronized( true ); -
branches/proxy/src/world_entities/npcs/space_turret.cc
r9602 r9625 75 75 this->weaponHolder[1].setParent(this); 76 76 77 this->wLeftHandle = registerVarId( new SynchronizeableString( &this->wLeft, &this->wLeft, "weapon-left" ) );78 this->wRightHandle = registerVarId( new SynchronizeableString( &this->wRight, &this->wRight, "weapon-right" ) );77 this->wLeftHandle = registerVarId( new SynchronizeableString( &this->wLeft, &this->wLeft, "weapon-left", PERMISSION_MASTER_SERVER ) ); 78 this->wRightHandle = registerVarId( new SynchronizeableString( &this->wRight, &this->wRight, "weapon-right", PERMISSION_MASTER_SERVER ) ); 79 79 80 80 }
Note: See TracChangeset
for help on using the changeset viewer.