Changeset 3089 for code/trunk/src/orxonox/objects/worldentities/pawns
- Timestamp:
- May 27, 2009, 4:11:31 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/map (added) merged: 2802,2812,2837-2838,2856,2913,2942,2956,2977,3082
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/objects/worldentities/pawns/Pawn.cc
r3087 r3089 86 86 87 87 this->registerVariables(); 88 89 this->isHumanShip_ = this->hasLocalController(); 88 90 } 89 91 … … 365 367 } 366 368 369 //Tell the Map (RadarViewable), if this is a playership 370 void Pawn::startLocalHumanControl() 371 { 372 // SUPER(ControllableEntity, changedPlayer()); 373 ControllableEntity::startLocalHumanControl(); 374 this->isHumanShip_ = true; 375 } 376 367 377 368 378 /////////////////// -
code/trunk/src/orxonox/objects/worldentities/pawns/Pawn.h
r3087 r3089 112 112 virtual void useItem() 113 113 { this->pickups_.useItem(); } 114 115 virtual void startLocalHumanControl(); 114 116 115 117 protected:
Note: See TracChangeset
for help on using the changeset viewer.