dbrand status command

This commit is contained in:
Zeva Rose 2021-07-01 10:58:06 -06:00
parent c580e1a7fb
commit 2bf1677a3c

View file

@ -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",