Merge pull request #244 from OpzekerIT/dev

kanaalid
This commit is contained in:
Lanta 2025-10-02 13:42:33 +02:00 committed by GitHub
commit db6e770bf9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,8 +33,9 @@ bot = commands.Bot(command_prefix="!", intents=intents)
@bot.event @bot.event
async def on_ready(ctx): async def on_ready(ctx):
print(f'Bot is ingelogd als {bot.user}') print(f'Bot is ingelogd als {bot.user}')
await ctx.send("Ben er weer!") channel = bot.get_channel(759006368832159745) # vervang door je channel ID
return if channel:
await channel.send("Ben er weer!")
@bot.command() @bot.command()
async def test(ctx): async def test(ctx):