From 5ce5f607c8cba3d2b436f5cc6eea87514029517a Mon Sep 17 00:00:00 2001 From: NepDisk Date: Wed, 21 May 2025 07:07:26 -0400 Subject: [PATCH] Fix Special 403 for bowling pin cut --- src/p_spec.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/p_spec.c b/src/p_spec.c index 65ba6a2f9..564bd5d61 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -2724,6 +2724,16 @@ boolean P_ProcessSpecial(activator_t *activator, INT16 special, INT32 *args, cha CONS_Debug(DBG_GAMELOGIC, "Special type 403 Executor: No frontsector to copy planes from!\n"); return false; } + + if (mapnamespace == MNS_SRB2KART) + { + if (line->args[2] != TMP_CEILING) + EV_DoFloor(line->args[1], line, moveFloorByFrontSector); + if (line->args[2] != TMP_FLOOR) + EV_DoCeiling(line->args[1], line, moveCeilingByFrontSector); + break; + } + copySector = line->frontsector; } else