Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 12, 2012, 11:47:59 PM (12 years ago)
Author:
landauf
Message:

remove dropped pickups from their collection

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2012merge/src/modules/pickup/CollectiblePickup.cc

    r9290 r9296  
    9393
    9494        if(this->isInCollection())
    95             this->collection_->pickupChangedPickedUp(this->isPickedUp());
     95        {
     96            if (!this->isPickedUp())
     97                this->collection_->removePickupable(this);
     98            else
     99                this->collection_->pickupChangedPickedUp(this->isPickedUp());
     100        }
    96101    }
    97102
Note: See TracChangeset for help on using the changeset viewer.