From c7b557a0a0dfc57bec55387ab4b2e6bcb4104328 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Sun, 21 Jun 2020 23:22:32 -0700 Subject: [PATCH] Remove comma from "/whois" skin field Allows you to click the link if it's a skin and work properly --- MCGalaxy/Database/Stats/OnlineStat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Database/Stats/OnlineStat.cs b/MCGalaxy/Database/Stats/OnlineStat.cs index be7df2332..4aac1f4fb 100644 --- a/MCGalaxy/Database/Stats/OnlineStat.cs +++ b/MCGalaxy/Database/Stats/OnlineStat.cs @@ -137,7 +137,7 @@ namespace MCGalaxy.DB { bool hasModel = !(who.Model.CaselessEq("humanoid") || who.Model.CaselessEq("human")); if (hasSkin && hasModel) { - p.Message(" Skin: &f{0}, %Smodel: &f{1}", who.SkinName, who.Model); + p.Message(" Skin: &f{0} %Smodel: &f{1}", who.SkinName, who.Model); } else if (hasSkin) { p.Message(" Skin: &f{0}", who.SkinName); } else if (hasModel) {