From 774f8748087e6c5bdcd7aacaf460ebcfe05baf82 Mon Sep 17 00:00:00 2001 From: malleoz Date: Tue, 4 Mar 2025 00:39:53 -0500 Subject: [PATCH] Unconditionally call calcRejection --- source/game/kart/KartReject.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/game/kart/KartReject.cc b/source/game/kart/KartReject.cc index 77247e49..355d4264 100644 --- a/source/game/kart/KartReject.cc +++ b/source/game/kart/KartReject.cc @@ -63,7 +63,9 @@ void KartReject::calcRejectRoad() { state()->setHop(false); - if (!state()->isNoSparkInvisibleWall() && !calcRejection()) { + bool didReject = calcRejection(); + + if (!state()->isNoSparkInvisibleWall() && !didReject) { state()->setRejectRoadTrigger(false); }