Armano den Boef
Armano den Boef
Please follow up on the question above.
It does, the intended behavior is to make calls until the self-defined limit is reached. Currently trying to figure out what is causing this to close out at 1000.
Going to look into this.
@quinchs are there any plans to act on this PR in the future?
@Cenngo could you look into this?
A longer log trace should be provided as to why the client disconnects here. I assume this is because of a regular reconnection? If not, please include the disconnection reason....
Possibly related to #2256
@quinchs thoughts on allowing message parameters to be provided with a string operator? ```cs public class Message { private Message(string input) { } public static implicit operator Message(string input) =>...
Also with the same design as above, an embed could serve as operator for message: ```cs private Message(Embed input) { } public static implicit operator Message(Embed embed) => new Message(embed);...
With the mention of 'format', another idea to consider is a `Format` method, much like `string.Format` which runs over all entries of the builder looking for `{}` format entries and...