From 55d1093a219c4e46c2edee97d2632f7b2e813554 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 4 Oct 2016 22:44:12 +1100 Subject: [PATCH] ZS: Fix wrong chance in /mi --- MCGalaxy/Commands/Information/CmdMapInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Commands/Information/CmdMapInfo.cs b/MCGalaxy/Commands/Information/CmdMapInfo.cs index fd720bc6b..cc61720fa 100644 --- a/MCGalaxy/Commands/Information/CmdMapInfo.cs +++ b/MCGalaxy/Commands/Information/CmdMapInfo.cs @@ -255,7 +255,7 @@ namespace MCGalaxy.Commands { case "authors": Authors = value; break; case "roundsplayed": TotalRounds = int.Parse(value); break; - case "RoundsHumanWon": HumanRounds = int.Parse(value); break; + case "roundshumanwon": HumanRounds = int.Parse(value); break; case "likes": Likes = int.Parse(value); break; case "dislikes": Dislikes = int.Parse(value); break;