diff --git a/app/cogs/server_utils.py b/app/cogs/server_utils.py index 1511ce3d..9cee32be 100644 --- a/app/cogs/server_utils.py +++ b/app/cogs/server_utils.py @@ -1,6 +1,7 @@ from discord.ext import commands import discord import os +import core_utils class ServerUtils(commands.Cog): @@ -52,11 +53,14 @@ class ServerUtils(commands.Cog): image=open(emoji_staging, "rb").read(), ) await ctx.send( - "Emoji created! heres how it looks in a sentence\n\n%s" % emoji_id + embed=core_utils.generate_embed( + embed_title="New emoji: %s" % emoji_name, + embed_description=emoji_id, + ) ) except Exception as e: await ctx.send( - "I wasnt able to upload that image as an emoji. Sorry\n %s" % e + "I wasnt able to upload that image as an emoji. Sorry\n\nError: %s" % e ) os.remove(emoji_staging) return diff --git a/helm/values.yaml b/helm/values.yaml index 8547cfa3..7d60af1f 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -6,7 +6,7 @@ replicaCount: 1 image: # Overrides the image tag whose default is the chart appVersion. - tag: "203" + tag: "204" repository: ldooks/dragon-bot pullPolicy: IfNotPresent