Unconnected players are now hidden/intangible
This commit is contained in:
parent
28b06da7e1
commit
69742f7f2f
|
@ -1852,6 +1852,16 @@ s32 execute_mario_action(UNUSED struct Object *o) {
|
|||
if (Cheats.SuperSpeed && gMarioState->forwardVel > 0)
|
||||
gMarioState->forwardVel += 100;
|
||||
}
|
||||
|
||||
// hide unconnected players
|
||||
if (gNetworkPlayers[gMarioState->playerIndex].type != NPT_LOCAL) {
|
||||
if (!gNetworkPlayers[gMarioState->playerIndex].connected) {
|
||||
gMarioState->marioObj->header.gfx.node.flags |= GRAPH_RENDER_INVISIBLE;
|
||||
gMarioState->marioObj->oIntangibleTimer = -1;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* End of cheat stuff
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue