diff --git a/jarvis/cogs/dbrand.py b/jarvis/cogs/dbrand.py index bbb9278..9374795 100644 --- a/jarvis/cogs/dbrand.py +++ b/jarvis/cogs/dbrand.py @@ -59,7 +59,9 @@ class DbrandCog(commands.Cog): description="Contact support", ) async def _contact(self, ctx): - await ctx.send(self.base_url + "contact") + await ctx.send( + "Contact dbrand support here: " + self.base_url + "contact" + ) @cog_ext.cog_subcommand( base="db", @@ -68,7 +70,9 @@ class DbrandCog(commands.Cog): description="Contact support", ) async def _support(self, ctx): - await ctx.send(self.base_url + "contact") + await ctx.send( + "Contact dbrand support here: " + self.base_url + "contact" + ) @cog_ext.cog_subcommand( base="db", @@ -88,6 +92,15 @@ class DbrandCog(commands.Cog): async def _orders(self, ctx): await ctx.send(self.base_url + "order-status") + @cog_ext.cog_subcommand( + base="db", + name="status", + guild_ids=[578757004059738142], + description="dbrand status", + ) + async def _status(self, ctx): + await ctx.send(self.base_url + "status") + @cog_ext.cog_subcommand( base="db", name="ship",