diff --git a/Commands/CPE/CmdModel.cs b/Commands/CPE/CmdModel.cs index 8d64a8f3f..bd7aeed68 100644 --- a/Commands/CPE/CmdModel.cs +++ b/Commands/CPE/CmdModel.cs @@ -70,6 +70,8 @@ namespace MCGalaxy.Commands { Entities.UpdateModel(who.id, model, who.level, who); if (p != who) Player.GlobalMessage(who.ColoredName + "'s %Smodel was changed to a &c" + model); + else + Player.Message(who, "Changed your own model to a &c" + model); Server.Models.DeleteStartsWith(who.name + " "); if (model != "humanoid") diff --git a/Commands/CPE/CmdSkin.cs b/Commands/CPE/CmdSkin.cs index 56d6b416e..3b1f33fb0 100644 --- a/Commands/CPE/CmdSkin.cs +++ b/Commands/CPE/CmdSkin.cs @@ -74,6 +74,8 @@ namespace MCGalaxy.Commands { Entities.GlobalSpawn(who, true); if (p != who) Player.GlobalMessage(who.ColoredName + "'s %Sskin was changed to &c" + skin); + else + Player.Message(who, "Changed your own skin to &c" + skin); Server.Skins.DeleteStartsWith(who.name + " "); if (skin != who.truename)