From 3dc03f923ce7e73166f306457a8462342a578cf6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 24 Oct 2020 13:14:00 +0200 Subject: [PATCH] - fixed: Crushing generic floors must use crush mode 2. This is how Doom always worked. Mode 1 is not useful for one-time crushing effects. # Conflicts: # src/p_lnspec.cpp --- src/p_lnspec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_lnspec.cpp b/src/p_lnspec.cpp index 8640f2cb1..ec8e609c3 100644 --- a/src/p_lnspec.cpp +++ b/src/p_lnspec.cpp @@ -565,7 +565,7 @@ FUNC(LS_Generic_Floor) } return EV_DoFloor (type, ln, arg0, SPEED(arg1), arg2, - (arg4 & 16) ? 20 : -1, arg4 & 7, false); + (arg4 & 16) ? 20 : -1, arg4 & 7, true); }