Merge pull request #302 from Isaac0-dev/apple

put everyone in the jumbo star cutscene if one person is in it
This commit is contained in:
Agent X 2023-03-20 20:06:05 -04:00 committed by GitHub
commit 5d2d8e2275
1 changed files with 4 additions and 0 deletions

View File

@ -402,6 +402,10 @@ void network_receive_player(struct Packet* p) {
LOG_INFO("%s entered the debug free fly state", np->name); LOG_INFO("%s entered the debug free fly state", np->name);
} }
#endif #endif
if (np->currLevelNum == LEVEL_BOWSER_3 && m->action == ACT_JUMBO_STAR_CUTSCENE && gMarioStates[0].action != ACT_JUMBO_STAR_CUTSCENE) {
set_mario_action((struct MarioState*) &gMarioStates[0], ACT_JUMBO_STAR_CUTSCENE, 0);
}
} }
void network_update_player(void) { void network_update_player(void) {