Changeset 9118 for code/branches/pickup2012/src/orxonox
- Timestamp:
- Apr 27, 2012, 2:36:52 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickup2012/src/orxonox/worldentities/pawns/Pawn.cc
r9099 r9118 232 232 { 233 233 // apply multiplier 234 damage *= originator->getDamageMultiplier(); 234 Pawn *test = dynamic_cast<Pawn *>(originator); 235 if( test != NULL ) 236 damage *= originator->getDamageMultiplier(); 235 237 236 238 if (this->getGametype() && this->getGametype()->allowPawnDamage(this, originator))
Note: See TracChangeset
for help on using the changeset viewer.