Fixed sector floor/ceiling actions not triggering in P_XYMovement

This commit is contained in:
ZZYZX 2018-10-31 21:56:01 +02:00 committed by Christoph Oelckers
commit 849d110f10
6 changed files with 57 additions and 31 deletions

View file

@ -711,7 +711,7 @@ bool P_Move (AActor *actor)
{
actor->floorsector->TriggerSectorActions(actor, SECSPAC_HitFloor);
}
P_CheckFor3DFloorHit(actor, actor->Z());
P_CheckFor3DFloorHit(actor, actor->Z(), true);
}
}
}