From e997dea8df17d0cc79cda437ca7cb61bf92ff0b2 Mon Sep 17 00:00:00 2001 From: Lanta Date: Thu, 13 Mar 2025 18:32:19 +0100 Subject: [PATCH 1/2] test --- discord/teammakerv2.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discord/teammakerv2.py b/discord/teammakerv2.py index e910d50..1392512 100644 --- a/discord/teammakerv2.py +++ b/discord/teammakerv2.py @@ -34,6 +34,10 @@ bot = commands.Bot(command_prefix="!", intents=intents) async def on_ready(): print(f'Bot is ingelogd als {bot.user}') +@bot.command() +async def test(ctx): + await ctx.send("Test geslaagd!") + @bot.command() async def teamify(ctx, *args): for arg in args: -- 2.49.1 From 4adaf68d43953b76f53b3eb0f2bfb56ead3bb22e Mon Sep 17 00:00:00 2001 From: Lanta Date: Thu, 13 Mar 2025 18:33:50 +0100 Subject: [PATCH 2/2] ignore --- .github/workflows/{main.yml => main.ignore} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{main.yml => main.ignore} (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/main.ignore similarity index 100% rename from .github/workflows/main.yml rename to .github/workflows/main.ignore -- 2.49.1