diff --git a/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/fun/CowsayCommand.java b/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/fun/CowsayCommand.java index 704904a5..d9d069c4 100644 --- a/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/fun/CowsayCommand.java +++ b/src/main/java/com/diamondfire/helpbot/bot/command/impl/other/fun/CowsayCommand.java @@ -6,6 +6,7 @@ import com.diamondfire.helpbot.bot.command.impl.Command; import com.diamondfire.helpbot.bot.command.permissions.Permission; import com.diamondfire.helpbot.bot.events.CommandEvent; +import com.diamondfire.helpbot.util.StringUtil; import net.dv8tion.jda.api.EmbedBuilder; public class CowsayCommand extends Command { @@ -63,7 +64,7 @@ public void run(CommandEvent event) { EmbedBuilder builder = new EmbedBuilder() .setTitle("The cow says") - .appendDescription("```\n" + bubbleBuilder.toString() + cowBuilder.toString() + "\n```"); + .appendDescription("```\n" + StringUtil.display(bubbleBuilder.toString() + cowBuilder.toString()) + "\n```"); event.getMessage().getChannel().sendMessageEmbeds(builder.build()).queue(); }