From 046e250f2e32399450ec74d43518384a455d65e1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 15 Apr 2017 14:54:43 +0200 Subject: [PATCH] - fixed: Ceiling_CrushStop checked the wrong argument for the remove parameter. --- 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 01f4f85ff..3a5d0d94b 100644 --- a/src/p_lnspec.cpp +++ b/src/p_lnspec.cpp @@ -717,7 +717,7 @@ FUNC(LS_Ceiling_CrushStop) // Ceiling_CrushStop (tag, remove) { bool remove; - switch (arg3) + switch (arg1) { case 1: remove = false;