Added Currency Conversion

This commit is contained in:
Robert 2020-01-07 18:04:00 +01:00
parent 2f16876177
commit 122fced329
4 changed files with 92 additions and 5 deletions

8
util/checking.py Normal file
View file

@ -0,0 +1,8 @@
import discord
from discord.ext import commands
from util import logging
def is_author_bot(ctx : commands.Context):
if ctx.message.author.bot:
return False
return True