Hi, can someone help me with this?
I want the bot to edit every 300 seconds his own embed. But Nothing happens.
Code:
async def gmod_status(self):
embed = discord.Embed(
title=f"Embed Title",
description="Edit Embed",
color=discord.Color.red(),
)
channel = await self.bot.fetch_channel(1191073160871825508)
message = await channel.fetch_message(1191075283130925056)
if message:
await message.edit(embed=embed)
else:
await channel.send(embed=embed)```