Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@ UpdateSleepTime BunkerBusterBehavior::update( void )
// ------------------------------------------------------------------------------------------------
void BunkerBusterBehavior::onDie( const DamageInfo *damageInfo )
{
#if !RETAIL_COMPATIBLE_CRC
// TheSuperHackers @bugfix Stubbjax 17/02/2026 Only bust the bunker if the missile kills itself
// by reaching its destination and not when killed via external sources such as a zap from a PDL.
if (!getObject()->testStatus(OBJECT_STATUS_MISSILE_KILLING_SELF))
return;
#endif

// do what we came here to do!
bustTheBunker();
}
Expand Down
Loading