diff --git a/MCGalaxy/Commands/Information/CmdWhoNick.cs b/MCGalaxy/Commands/Information/CmdWhoNick.cs index 07a0a2a4b..505043e50 100644 --- a/MCGalaxy/Commands/Information/CmdWhoNick.cs +++ b/MCGalaxy/Commands/Information/CmdWhoNick.cs @@ -53,7 +53,7 @@ namespace MCGalaxy.Commands.Info { PlayerBot nick = FindBotNick(p, message); if (nick == null) return; - p.Message("This bot's real name is &1{0}%S, its nickname is {1}%S and its owner is {2}.", nick.name, nick.DisplayName, string.IsNullOrEmpty(nick.Owner) ? "no one" : nick.Owner); + p.Message("This bot's real name is &1{0}%S, its nickname is {1}%S, its owner is {2} and its skin is {3}", nick.name, nick.DisplayName, string.IsNullOrEmpty(nick.Owner) ? "no one" : nick.Owner, nick.SkinName); } static PlayerBot FindBotNick(Player p, string nick) { nick = Colors.Strip(nick);