Revnoplex

Results 14 comments of Revnoplex

Nope, still same behaviour with the same code on 2.4.1.dev88+ga09e728f (commit a09e728f7ff2b0911571341cefc5545043d7851a)

For now the `pages.Paginator(author_check=False)` is a working workaround

ah, for some reason the changes broke ext.tasks. I'm not sure why

For some reason the behaviour of replacing `get_event_loop` with `new_event_loop` in Client causes `create_tasks` in `tasks.py` to never run

`new_event_loop` is no good. Using `get_event_loop_policy().get_event_loop()` instead per https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.get_event_loop and https://github.com/python/cpython/issues/93453

This is getting too complicated. I'm closing this.

Can you confirm you tried running the command as a prefix command and not a slash command?

I have been testing on the somewhat latest commit past 2.6.1, I will have to investigate further

I'm still getting the same results with the following environment: - Python v3.13.0-final - py-cord v2.6.1-final (does not reflect version from latest branch) - aiohttp v3.10.10 - system info: Linux...

Still reproducing it after creating a new project and with the following file: ```python #!./venv/bin/python3.13 import discord from discord.ext import bridge bot = bridge.Bot(command_prefix="ra!", intents=discord.Intents.all()) @bot.event async def on_ready(): print(f"We...