Fix Special 403 for bowling pin cut
This commit is contained in:
parent
deb447aec7
commit
5ce5f607c8
1 changed files with 10 additions and 0 deletions
10
src/p_spec.c
10
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue