You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ctx.channel.permissions_for(ctx.me) is not type safe because ctx.me can be a ClientUser, but in the context of a Guild, this should always be safe. There's not a good way to provide type safety for this, it would be easier to add type safety with ctx.app_permissions, just like interactions support.