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