From 9c9e0c7a30af8b3563e07c5b1e2264efaeb31f16 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 27 Jun 2021 18:54:03 -0600 Subject: [PATCH] Fix issue with camo command, add extra alias --- jarvis/cogs/dbrand.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jarvis/cogs/dbrand.py b/jarvis/cogs/dbrand.py index b4da455..d7e6a3b 100644 --- a/jarvis/cogs/dbrand.py +++ b/jarvis/cogs/dbrand.py @@ -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"])