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