Add Amy to credits

This commit is contained in:
MysterD 2022-02-26 16:30:51 -08:00
parent f4e1647257
commit ca8d0b9c9c
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Developers:
Contributors: Contributors:
AloXado320 AloXado320
Amy54Desu
anzz1 anzz1
Avery Avery
Cameron Hall Cameron Hall

View File

@ -67,7 +67,7 @@ void network_send_join(struct Packet* joinRequestPacket) {
// figure out id // figure out id
u8 globalIndex = joinRequestPacket->localIndex; u8 globalIndex = joinRequestPacket->localIndex;
if (globalIndex == UNKNOWN_LOCAL_INDEX) { if (globalIndex == UNKNOWN_LOCAL_INDEX) {
for (int i = 1; i < configAmountofPlayers; i++) { for (u32 i = 1; i < configAmountofPlayers; i++) {
if (!gNetworkPlayers[i].connected) { if (!gNetworkPlayers[i].connected) {
globalIndex = i; globalIndex = i;
break; break;