dbrand status command
This commit is contained in:
parent
c580e1a7fb
commit
2bf1677a3c
1 changed files with 15 additions and 2 deletions
|
@ -59,7 +59,9 @@ class DbrandCog(commands.Cog):
|
||||||
description="Contact support",
|
description="Contact support",
|
||||||
)
|
)
|
||||||
async def _contact(self, ctx):
|
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(
|
@cog_ext.cog_subcommand(
|
||||||
base="db",
|
base="db",
|
||||||
|
@ -68,7 +70,9 @@ class DbrandCog(commands.Cog):
|
||||||
description="Contact support",
|
description="Contact support",
|
||||||
)
|
)
|
||||||
async def _support(self, ctx):
|
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(
|
@cog_ext.cog_subcommand(
|
||||||
base="db",
|
base="db",
|
||||||
|
@ -88,6 +92,15 @@ class DbrandCog(commands.Cog):
|
||||||
async def _orders(self, ctx):
|
async def _orders(self, ctx):
|
||||||
await ctx.send(self.base_url + "order-status")
|
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(
|
@cog_ext.cog_subcommand(
|
||||||
base="db",
|
base="db",
|
||||||
name="ship",
|
name="ship",
|
||||||
|
|
Loading…
Add table
Reference in a new issue