modified player count message on update check

This commit is contained in:
steven carpenter 2025-06-30 17:38:16 -04:00
parent c87f313731
commit 5518f439ee

View file

@ -101,7 +101,7 @@ func main() {
} }
} }
maxIndex = maxIndex+1 maxIndex = maxIndex+1
fmt.Printf("Highest player index: %d\n", maxIndex) fmt.Printf("Player Count: %d\n", maxIndex)
} }
} }