mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 13:35:12 +00:00
Fix my bug in common_air_action_step
This commit is contained in:
parent
2ed39e092e
commit
8eb0babc07
1 changed files with 1 additions and 1 deletions
|
@ -415,7 +415,7 @@ u32 common_air_action_step(struct MarioState *m, u32 landAction, s32 animation,
|
|||
set_character_animation(m, animation);
|
||||
|
||||
if (m->forwardVel > 16.0f) {
|
||||
if (m->wall == NULL && gServerSettings.bouncyLevelBounds == BOUNCY_LEVEL_BOUNDS_OFF) {
|
||||
if (gServerSettings.bouncyLevelBounds == BOUNCY_LEVEL_BOUNDS_OFF || m->wall != NULL) {
|
||||
queue_rumble_data_mario(m, 5, 40);
|
||||
mario_bonk_reflection(m, FALSE);
|
||||
m->faceAngle[1] += 0x8000;
|
||||
|
|
Loading…
Reference in a new issue