Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ public String getName() {
@Override
public HelpContext getHelpContext() {
return new HelpContext()
.description("Controls custom command tags. Notes:\n- New: Use \"%space%\" in the title for spaces."+
"\n- Edit: Use \"none\" for image to remove the image.")
.description("""
Controls custom command tags. Notes:
- New: Use "%space%" in the title for spaces.
- Edit: Use "none" for image to remove the image.""")
.category(CommandCategory.OTHER)
.addArgument(
new HelpContextArgument()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public Permission getPermission() {
protected void execute(CommandEvent event, Player player) {
PresetBuilder preset = new PresetBuilder()
.withPreset(
new InformativeReply(InformativeReplyType.INFO, String.format("%s's Skin", player), null),
new InformativeReply(InformativeReplyType.INFO, String.format("%s's Skin", player.name()), null),
new MinecraftUserPreset(player)
);

Expand Down