From b49a210e851f9d0aa82ea7942d0b7f993bb1e534 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Thu, 29 Jan 2026 22:50:01 -0500 Subject: [PATCH] disable playerfade after crossing the line --- src/r_things.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_things.cpp b/src/r_things.cpp index 4d23c9ef4..22fe0125b 100644 --- a/src/r_things.cpp +++ b/src/r_things.cpp @@ -3885,7 +3885,7 @@ fixed_t R_GetThingFade(mobj_t *thing) case MT_FOLLOWERBUBBLE_FRONT: break; case MT_PLAYER: - if (!thing->player || thing->player == viewplayer) + if (!thing->player || thing->player == viewplayer || thing->player->exiting) return fadealpha; break;