From b752d238fe5eef0a70ff1054d2578a1b703dfa46 Mon Sep 17 00:00:00 2001 From: tastymeatball <44088711+tastymeatball@users.noreply.github.com> Date: Wed, 8 Dec 2021 17:50:37 +0100 Subject: [PATCH] Update basic.py --- robocop_ng/cogs/basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robocop_ng/cogs/basic.py b/robocop_ng/cogs/basic.py index 2ace025..306b171 100644 --- a/robocop_ng/cogs/basic.py +++ b/robocop_ng/cogs/basic.py @@ -24,7 +24,7 @@ class Basic(Cog): @commands.cooldown(1, 10, type=commands.BucketType.user) @commands.command(name="dec") async def _dec(self, ctx, num): - """Converts base 10 to 16""" + """Converts base 16 to 10""" await ctx.send(f"{ctx.author.mention}: {int(num, 16)}") @commands.guild_only()