diff --git a/src/p_map.cpp b/src/p_map.cpp index 74557a68a..19c4c6a9d 100644 --- a/src/p_map.cpp +++ b/src/p_map.cpp @@ -4280,6 +4280,7 @@ struct aim_t thingtoppitch = -VecToAngle(exitdist, th->Top() - shootz); if (thingtoppitch > bottompitch) continue; } + else continue; // shot over the thing } else continue; // shot over the thing } @@ -4298,6 +4299,7 @@ struct aim_t thingbottompitch = -VecToAngle(exitdist, th->Z() - shootz); if (thingbottompitch < toppitch) continue; } + else continue; // shot over the thing } continue; // shot under the thing }