From 8fde2fefe5d68e1df0478b6c96106bb4ee2dff3a Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 23 Aug 2016 17:32:57 +1000 Subject: [PATCH] Use -frozen instead of -freeze for /who when a player is frozen. --- Commands/Information/CmdPlayers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commands/Information/CmdPlayers.cs b/Commands/Information/CmdPlayers.cs index 5f8cd2008..542f75b9f 100644 --- a/Commands/Information/CmdPlayers.cs +++ b/Commands/Information/CmdPlayers.cs @@ -94,7 +94,7 @@ namespace MCGalaxy.Commands static void AddStates(Player pl, ref string name) { if (pl.hidden) name += "-hidden"; if (pl.muted) name += "-muted"; - if (pl.frozen) name += "-freeze"; + if (pl.frozen) name += "-frozen"; if (pl.Game.Referee) name += "-ref"; if (pl.IsAfk) name += "-afk"; }