Update main.py

This commit is contained in:
Mike2.0
2023-11-10 19:32:13 +00:00
parent e2a2ba90fa
commit 369ac8b76f

View File

@@ -107,16 +107,13 @@ async def delete(ctx, attr: str, user: discord.Option(choices=[os.environ['N1'],
@bot.event
async def mensaje_jueves():
channel = bot.get_channel(1051497546708697120)
await channel.send("prueba")
async def mensaje_jueves():
while True:
current_date = datetime.datetime.now()
if current_date.weekday() == 4:
if current_date.hour == 20 and current_date.minute == 29:
await mensaje_jueves()
if current_date.hour == 20 and current_date.minute == 33 and current_date.second == 00:
channel = bot.get_channel(1051497546708697120)
await channel.send("prueba")
await asyncio.sleep(10)