Fix issue with camo command, add extra alias
This commit is contained in:
parent
72d3578551
commit
9c9e0c7a30
1 changed files with 4 additions and 4 deletions
|
@ -28,15 +28,15 @@ class DbrandCog(commands.Cog):
|
||||||
if ctx.invoked_subcommand is None:
|
if ctx.invoked_subcommand is None:
|
||||||
await ctx.send(
|
await ctx.send(
|
||||||
"Available subcommands: `grip`, `support`, "
|
"Available subcommands: `grip`, `support`, "
|
||||||
+ "`skin`, `prism`, `shipping`"
|
+ "`skin`, `prism`, `shipping`, `camo`"
|
||||||
)
|
)
|
||||||
|
|
||||||
@_db.command(name="skin", aliases=["skins", "tape"])
|
@_db.command(name="skin", aliases=["skins", "tape"])
|
||||||
async def _skin(self, ctx):
|
async def _skin(self, ctx):
|
||||||
await ctx.send(self.base_url + "shop/skins")
|
await ctx.send(self.base_url + "shop/skins")
|
||||||
|
|
||||||
@_db.command(name="robotcamo", aliases=["rc", "robot"])
|
@_db.command(name="robotcamo", aliases=["rc", "robot", "camo"])
|
||||||
async def _skin(self, ctx):
|
async def _camo(self, ctx):
|
||||||
await ctx.send(self.base_url + "shop/special-edition/robot-camo")
|
await ctx.send(self.base_url + "shop/special-edition/robot-camo")
|
||||||
|
|
||||||
@_db.command(name="grip", aliases=["g", "case"])
|
@_db.command(name="grip", aliases=["g", "case"])
|
||||||
|
|
Loading…
Add table
Reference in a new issue