diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-11 14:34:45 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-11 14:34:45 -0400 |
commit | 8f8665e1dcfffaa83727e3cb814c82179aa3dbe3 (patch) | |
tree | fb1346209b13912ef04467337f8e9ba867796dd7 /src/union_room_battle.c | |
parent | ec0edfd1985287212220d886dcf8243b0949bd28 (diff) |
Some documentation of berry_crush
Diffstat (limited to 'src/union_room_battle.c')
-rw-r--r-- | src/union_room_battle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/union_room_battle.c b/src/union_room_battle.c index 3d06b3fe2..3d5ef39eb 100644 --- a/src/union_room_battle.c +++ b/src/union_room_battle.c @@ -190,7 +190,7 @@ void CB2_UnionRoomBattle(void) } break; case 6: - if (gReceivedRemoteLinkPlayers == 0) + if (!gReceivedRemoteLinkPlayers) { gMain.state++; } @@ -202,7 +202,7 @@ void CB2_UnionRoomBattle(void) } break; case 8: - if (gReceivedRemoteLinkPlayers == 0) + if (!gReceivedRemoteLinkPlayers) { gMain.state++; } |