diff --git a/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/tag/TagCommand.java b/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/tag/TagCommand.java index 70d16cb4..f05f7c38 100644 --- a/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/tag/TagCommand.java +++ b/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/tag/TagCommand.java @@ -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() diff --git a/src/main/java/com/diamondfire/helpbot/bot/command/impl/stats/individualized/SkinCommand.java b/src/main/java/com/diamondfire/helpbot/bot/command/impl/stats/individualized/SkinCommand.java index 517d6bf6..373b146a 100644 --- a/src/main/java/com/diamondfire/helpbot/bot/command/impl/stats/individualized/SkinCommand.java +++ b/src/main/java/com/diamondfire/helpbot/bot/command/impl/stats/individualized/SkinCommand.java @@ -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) );