From d666ebc2cf1f5b6b493ade7fb650d2871c52dd5b Mon Sep 17 00:00:00 2001 From: spherallic Date: Mon, 26 Sep 2022 20:32:57 +0200 Subject: [PATCH] Prevent floating crumbling platforms from being triggered twice --- src/p_floor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/p_floor.c b/src/p_floor.c index 01d893bcd..2d25e8208 100644 --- a/src/p_floor.c +++ b/src/p_floor.c @@ -591,7 +591,6 @@ void T_BounceCheese(bouncecheese_t *bouncer) if (bouncer->sector->crumblestate == CRUMBLE_RESTORE || bouncer->sector->crumblestate == CRUMBLE_WAIT || bouncer->sector->crumblestate == CRUMBLE_ACTIVATED) // Oops! Crumbler says to remove yourself! { - bouncer->sector->crumblestate = CRUMBLE_WAIT; bouncer->sector->ceilingdata = NULL; bouncer->sector->ceilspeed = 0; bouncer->sector->floordata = NULL;