From 09f6edacbe1d7082d0e5b6c2472d2ad127d674d1 Mon Sep 17 00:00:00 2001 From: Virx Date: Sun, 15 Dec 2024 14:35:17 -0500 Subject: [PATCH] Fix #59 --- RLBotCS/ManagerTools/MatchStarter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RLBotCS/ManagerTools/MatchStarter.cs b/RLBotCS/ManagerTools/MatchStarter.cs index 53f5fce..0d3821e 100644 --- a/RLBotCS/ManagerTools/MatchStarter.cs +++ b/RLBotCS/ManagerTools/MatchStarter.cs @@ -102,7 +102,7 @@ private void PreprocessMatch(MatchSettingsT matchSettings) if (playerNames.TryGetValue(playerName, out int value)) { playerNames[playerName] = ++value; - playerConfig.Name = playerName + $" ({value})"; + playerConfig.Name = playerName + $" ({value + 1})"; } else {