From 8dbfd21d913b7bc338e61b217416a1f038a04335 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 3 Apr 2012 15:13:55 +0000 Subject: [PATCH] - fixed wrong flag check from r3490. SVN r3516 (trunk) --- src/p_map.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.cpp b/src/p_map.cpp index d0d270679..25ce2c813 100644 --- a/src/p_map.cpp +++ b/src/p_map.cpp @@ -1788,7 +1788,7 @@ bool P_TryMove (AActor *thing, fixed_t x, fixed_t y, { goto pushline; } - if (thing->flags & MF_MISSILE) + if (thing->flags6 & MF6_STEPMISSILE) { thing->z = tm.floorz; // If moving down, cancel vertical component of the velocity