From 9d6a239fd5df70093b5ee0a4154aae50c5d0d54a Mon Sep 17 00:00:00 2001 From: Sunk <69110309+Sunketchupm@users.noreply.github.com> Date: Mon, 7 Oct 2024 22:07:40 -0400 Subject: [PATCH] EmeraldLoc's easy suggestions --- src/game/interaction.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/interaction.c b/src/game/interaction.c index d69f42924..b2d023175 100644 --- a/src/game/interaction.c +++ b/src/game/interaction.c @@ -1319,8 +1319,8 @@ static u8 resolve_player_collision(struct MarioState* m, struct MarioState* m2) } u8 determine_player_damage_value(u32 interaction) { - if (interaction & INT_GROUND_POUND_OR_TWIRL) { return 3; } - if (interaction & (INT_KICK | INT_SLIDE_KICK | INT_TRIP)) { return 2; } + if (interaction & (INT_GROUND_POUND | INT_TRIP)) { return 3; } + if (interaction & (INT_KICK | INT_SLIDE_KICK | INT_TWIRL)) { return 2; } return 1; }