Fix issue with camo command, add extra alias

This commit is contained in:
Zeva Rose 2021-06-27 18:54:03 -06:00
parent 72d3578551
commit 9c9e0c7a30

View file

@ -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"])