From 52187748f9bd771cf8934bc6399ed30b338125d1 Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Thu, 1 Sep 2022 09:55:48 -0700 Subject: [PATCH] Add another new line to the message when the bot converts an image --- app/bot.py | 2 +- app/help_methods.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 app/help_methods.py diff --git a/app/bot.py b/app/bot.py index ce08a309..9bc2c1cc 100755 --- a/app/bot.py +++ b/app/bot.py @@ -41,7 +41,7 @@ async def fix_cdn_url(ctx): if any(x in ctx.content for x in videos) and "media.discordapp.net" in ctx.content: await ctx.delete() await ctx.channel.send( - "%s said:\n%s" + "%s said:\n\n%s" % ( ctx.author.mention, ctx.content.replace("media.discordapp.net", "cdn.discordapp.com"), diff --git a/app/help_methods.py b/app/help_methods.py old mode 100755 new mode 100644