- Timestamp:
- Apr 6, 2009, 3:53:50 PM (16 years ago)
- Location:
- code/branches/pickups
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickups
-
Property
svn:ignore
set to
build
dependencies
-
Property
svn:ignore
set to
-
code/branches/pickups/src/orxonox/objects/pickup/BaseItem.cc
r2864 r2900 63 63 this->setOwner(pawn); 64 64 65 COUT(3) << "Adding '" << this->getPickupIdentifier() << "' item." << std::endl; 66 67 return pawn->getPickups().add(this); 65 if (pawn->getPickups().add(this)) 66 { 67 COUT(3) << "Added '" << this->getPickupIdentifier() << "' item." << std::endl; 68 return true; 69 } 70 return false; 68 71 } 69 72 /**
Note: See TracChangeset
for help on using the changeset viewer.