From 08d08c721ac2fc86f2234bbc1ea4226b947409f2 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Sun, 7 Jul 2024 19:06:47 -0400 Subject: [PATCH] Fix cap on ground model not updating --- src/game/behaviors/cap.inc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/behaviors/cap.inc.c b/src/game/behaviors/cap.inc.c index 44e1ad50..78407f05 100644 --- a/src/game/behaviors/cap.inc.c +++ b/src/game/behaviors/cap.inc.c @@ -250,6 +250,8 @@ void bhv_normal_cap_loop(void) { if (cap_set_hitbox() == 1) save_file_clear_flags(SAVE_FLAG_CAP_ON_GROUND); + + obj_set_model(o, gMarioStates[network_local_index_from_global(o->globalPlayerIndex)].character->capModelId); } void bhv_vanish_cap_init(void) {