Christopher F.
Christopher F.
wouldn't reccomend lowering your heartbeat to 15s, discord specifies 41.5s for a reason. I'd deviate 5s off the reccomended heartbeat at max, going down to 15 might cause issues
DiscordSharp doesn't have an internal ratelimit manager? @Luigifan get on it The solution I'd reccomend is ``` foreach (var m in messagesToSend) { //send m Thread.Sleep(1000); } ``` This will...
I've never seen this one before, can you provide any additional details about the environment you're running in? OS, Architecture, .NET Framework or Core + Version, WebSocket Provider?
In your case this doesn't really seem like a breaking issue. Instead of building your bot's documentation at startup or module initialization, build it after modules have been initialized. Your...
You shouldn't need a full CommandService then, pure reflection should suffice.