diff --git a/src/playsim/p_map.cpp b/src/playsim/p_map.cpp index fafa2b7ef..f18fa61e6 100644 --- a/src/playsim/p_map.cpp +++ b/src/playsim/p_map.cpp @@ -1528,7 +1528,8 @@ bool PIT_CheckThing(FMultiBlockThingsIterator &it, FMultiBlockThingsIterator::Ch // MBF bouncer might have a non-0 damage value, but they must not deal damage on impact either. if ((tm.thing->BounceFlags & BOUNCE_Actors) && (tm.thing->IsZeroDamage() || !(tm.thing->flags & MF_MISSILE))) { - return ((tm.thing->target == thing && !(tm.thing->flags8 & MF8_HITOWNER)) || !(thing->flags & MF_SOLID)); + return (((tm.thing->target == thing && !(tm.thing->flags8 & MF8_HITOWNER)) || !(thing->flags & MF_SOLID)) && + (tm.thing->SpecialMissileHit(thing) != 0)); } switch (tm.thing->SpecialMissileHit(thing))