diff options
Diffstat (limited to '')
-rw-r--r-- | source/Pickup.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Pickup.cpp b/source/Pickup.cpp index 19959efa3..6d0f0aa0e 100644 --- a/source/Pickup.cpp +++ b/source/Pickup.cpp @@ -93,7 +93,7 @@ void cPickup::Tick(float a_Dt, cChunk & a_Chunk) m_Timer += a_Dt; // In case we have to destroy the pickup in the same tick. if (m_Timer > 500.f) { - Destroy(); + Destroy(true); return; } } @@ -104,20 +104,20 @@ void cPickup::Tick(float a_Dt, cChunk & a_Chunk) { if (m_Timer > 500.f) // 0.5 second { - Destroy(); + Destroy(true); return; } } if (m_Timer > 1000 * 60 * 5) // 5 minutes { - Destroy(); + Destroy(true); return; } if (GetPosY() < -8) // Out of this world and no more visible! { - Destroy(); + Destroy(true); return; } } |