Remove comma from "/whois" skin field

Allows you to click the link if it's a skin and work properly
This commit is contained in:
Goodlyay 2020-06-21 23:22:32 -07:00
parent a5c9eb45e1
commit c7b557a0a0

View File

@ -137,7 +137,7 @@ namespace MCGalaxy.DB {
bool hasModel = !(who.Model.CaselessEq("humanoid") || who.Model.CaselessEq("human")); bool hasModel = !(who.Model.CaselessEq("humanoid") || who.Model.CaselessEq("human"));
if (hasSkin && hasModel) { 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) { } else if (hasSkin) {
p.Message(" Skin: &f{0}", who.SkinName); p.Message(" Skin: &f{0}", who.SkinName);
} else if (hasModel) { } else if (hasModel) {