From c25e34fb29880662fdac1ab5fba9ca15525c6746 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 28 Oct 2017 11:38:35 +1100 Subject: [PATCH] Fix TNT wars crashing entire server, when round ended and blue score was >= red score --- MCGalaxy/Games/TntWars/TntWars.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Games/TntWars/TntWars.cs b/MCGalaxy/Games/TntWars/TntWars.cs index 4194eb8b4..c7b38607d 100644 --- a/MCGalaxy/Games/TntWars/TntWars.cs +++ b/MCGalaxy/Games/TntWars/TntWars.cs @@ -315,7 +315,7 @@ namespace MCGalaxy.Games } if (BlueScore >= RedScore) { - Chat.MessageGlobal("TNT Wars: Team &9Blue %Swon &cTNT Wars %Sby {1} points!", BlueScore - RedScore); + Chat.MessageGlobal("TNT Wars: Team &9Blue %Swon &cTNT Wars %Sby {0} points!", BlueScore - RedScore); } try {