From 5518f439eeaff85ca1126298dcde4c4d0efff18a Mon Sep 17 00:00:00 2001 From: steven carpenter Date: Mon, 30 Jun 2025 17:38:16 -0400 Subject: [PATCH] modified player count message on update check --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 3a994e6..2c610bd 100644 --- a/main.go +++ b/main.go @@ -101,7 +101,7 @@ func main() { } } maxIndex = maxIndex+1 - fmt.Printf("Highest player index: %d\n", maxIndex) + fmt.Printf("Player Count: %d\n", maxIndex) } }