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:
|
||||
await ctx.send(
|
||||
"Available subcommands: `grip`, `support`, "
|
||||
+ "`skin`, `prism`, `shipping`"
|
||||
+ "`skin`, `prism`, `shipping`, `camo`"
|
||||
)
|
||||
|
||||
@_db.command(name="skin", aliases=["skins", "tape"])
|
||||
async def _skin(self, ctx):
|
||||
await ctx.send(self.base_url + "shop/skins")
|
||||
|
||||
@_db.command(name="robotcamo", aliases=["rc", "robot"])
|
||||
async def _skin(self, ctx):
|
||||
@_db.command(name="robotcamo", aliases=["rc", "robot", "camo"])
|
||||
async def _camo(self, ctx):
|
||||
await ctx.send(self.base_url + "shop/special-edition/robot-camo")
|
||||
|
||||
@_db.command(name="grip", aliases=["g", "case"])
|
||||
|
|
Loading…
Add table
Reference in a new issue