From b7c8b86e2623d788e8442d9e68dc67cca23b845b Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Mon, 29 Apr 2024 12:18:51 -0700 Subject: [PATCH] Don't FormatNick twice in /where --- MCGalaxy/Commands/Information/CmdWhere.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Commands/Information/CmdWhere.cs b/MCGalaxy/Commands/Information/CmdWhere.cs index 211fd8ea7..805742205 100644 --- a/MCGalaxy/Commands/Information/CmdWhere.cs +++ b/MCGalaxy/Commands/Information/CmdWhere.cs @@ -43,7 +43,7 @@ public override void Use(Player p, string message, CommandData data) { targetName = p.FormatNick((Player)target); } - target.DisplayPosition(p, p.FormatNick(targetName)); + target.DisplayPosition(p, targetName); } public override void Help(Player p) {