Tried to disable the reminder command. Gonna fix it later

pull/2/head
sgoudham 4 years ago
parent 679f2537ff
commit c6f6c7ef40

@ -1,3 +1,4 @@
import _thread
from datetime import datetime from datetime import datetime
from datetime import timedelta from datetime import timedelta
from time import sleep from time import sleep
@ -9,18 +10,19 @@ class Reminder(commands.Cog):
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot
@commands.command() @commands.Cog.listener()
async def remindme(self, ctx): @commands.has_any_role('Hamothy')
async def ex(self, ctx):
time_left = [float(i) for i in str(datetime.now().time()).split(":")] time_left = [float(i) for i in str(datetime.now().time()).split(":")]
time_left = timedelta(hours=2) - timedelta(hours=time_left[0] % 2, minutes=time_left[1], time_left = timedelta(hours=2) - timedelta(hours=time_left[0] % 2, minutes=time_left[1], seconds=time_left[2])
seconds=time_left[2])
sleep(round(time_left.total_seconds())) sleep(round(time_left.total_seconds()))
while True: while True:
await ctx.send("Bump the Server Idiots") await ctx.send("Bump the Server Idiots")
sleep(7200) sleep(7200)
_thread.start_new_thread(ex, ())
def setup(bot): def setup(bot):
bot.add_cog(Reminder(bot)) bot.add_cog(Reminder(bot))

Loading…
Cancel
Save