mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2025-02-02 05:01:05 +00:00
dec: fix
This commit is contained in:
parent
831e44d56b
commit
a1991921a2
|
@ -25,7 +25,7 @@ class Basic(Cog):
|
|||
@commands.command(name="dec")
|
||||
async def _dec(self, ctx, num):
|
||||
"""Converts base 10 to 16"""
|
||||
await ctx.send(f"{ctx.author.mention}: {int(num)}")
|
||||
await ctx.send(f"{ctx.author.mention}: {int(num, 16)}")
|
||||
|
||||
@commands.guild_only()
|
||||
@commands.command()
|
||||
|
|
Loading…
Reference in a new issue