diff --git a/jarvis/cogs/dbrand.py b/jarvis/cogs/dbrand.py index bba163c..79e4904 100644 --- a/jarvis/cogs/dbrand.py +++ b/jarvis/cogs/dbrand.py @@ -40,7 +40,7 @@ class DbrandCog(commands.Cog): ) @commands.cooldown(1, 30, commands.BucketType.channel) async def _skin(self, ctx: SlashContext) -> None: - await ctx.send(self.base_url + "shop/skins") + await ctx.send(self.base_url + "/skins") @cog_ext.cog_subcommand( base="db", @@ -50,7 +50,7 @@ class DbrandCog(commands.Cog): ) @commands.cooldown(1, 30, commands.BucketType.channel) async def _camo(self, ctx: SlashContext) -> None: - await ctx.send(self.base_url + "shop/special-edition/robot-camo") + await ctx.send(self.base_url + "robot-camo") @cog_ext.cog_subcommand( base="db", @@ -60,7 +60,7 @@ class DbrandCog(commands.Cog): ) @commands.cooldown(1, 30, commands.BucketType.channel) async def _grip(self, ctx: SlashContext) -> None: - await ctx.send(self.base_url + "shop/grip/#grip-devices") + await ctx.send(self.base_url + "grip") @cog_ext.cog_subcommand( base="db",