mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Fix remote player pole position
This commit is contained in:
parent
7c3006025c
commit
26718d60d6
1 changed files with 1 additions and 1 deletions
|
|
@ -2164,7 +2164,7 @@ void mario_process_interactions(struct MarioState *m) {
|
||||||
s32 i;
|
s32 i;
|
||||||
for (i = 0; i < 32; i++) {
|
for (i = 0; i < 32; i++) {
|
||||||
u32 interactType = sInteractionHandlers[i].interactType;
|
u32 interactType = sInteractionHandlers[i].interactType;
|
||||||
if (m->playerIndex != 0 && interactType != (u32)INTERACT_PLAYER) {
|
if (m->playerIndex != 0 && interactType != (u32)INTERACT_PLAYER && interactType != (u32)INTERACT_POLE) {
|
||||||
// skip interactions for remote
|
// skip interactions for remote
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue