From 19880356eb4df22c6da5a45a8f3b1f9da7a926d0 Mon Sep 17 00:00:00 2001 From: PeachyPeachSM64 <72323920+PeachyPeachSM64@users.noreply.github.com> Date: Tue, 6 May 2025 16:58:25 +0200 Subject: [PATCH] Revert "Fix INT_HIT_FROM_ABOVE/BELOW check (#751)" This reverts commit d8e9cd8641f867a291222a740ab95efda8e1ae4f. --- src/game/interaction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/interaction.c b/src/game/interaction.c index 584032fd4..1554f0d46 100644 --- a/src/game/interaction.c +++ b/src/game/interaction.c @@ -226,7 +226,7 @@ u32 determine_interaction(struct MarioState *m, struct Object *o) { // Prior to this, the interaction type could be overwritten. This requires, however, // that the interaction not be set prior. This specifically overrides turning a ground // pound into just a bounce. - if ((interaction == 0 || interaction & INT_LUA) && (action & ACT_FLAG_AIR)) { + if (interaction == 0 && (action & ACT_FLAG_AIR)) { if (m->vel[1] < 0.0f) { if (m->pos[1] > o->oPosY) { interaction = INT_HIT_FROM_ABOVE;