aboutsummaryrefslogtreecommitdiff
path: root/cogs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xcogs/utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/cogs/utils.py b/cogs/utils.py
index ae5a84b..3b55211 100755
--- a/cogs/utils.py
+++ b/cogs/utils.py
@@ -382,10 +382,5 @@ class Utils(commands.Cog):
output = ", ".join([*commands])
await ctx.send(f"```List of custom commands:\n{output}```")
- @commands.command(aliases=['eval', 'calc'])
- async def math(self, ctx, *, equation: str = "2 + 2"):
- """Evaluate a mathematical equation"""
- await ctx.send(f'`{equation} = {eval(equation)}`')
-
def setup(bot):
bot.add_cog(Utils(bot))