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
makes all the other default commands/abilities inaccessible. The bot just replies with "Sorry, group-only feature.", since it's, well, a default ability. I have to use this particular set of options (locality, privacy) to check message contents. There's no way to further chain the event or make the other abilities in the list usable.
I propose to allow processing of the update further down the chain (replace Consumer in Ability with Function<MessageContext, Boolean and proceed to other abilities)
The text was updated successfully, but these errors were encountered:
Ah, I figured that since then I've changed the command prefix. With a proper prefix the commands work, buut if you type anything that doesn't start with a command prefix you get the same message in private messages, despite the ability was designed fro group messages. So, it seems, like there should be (?) a default ability per each privacy level?
Hi, not sure what this repo state is in, considering the sheer amount of open & unanswered issues and PRs, but I'll try anyway:
The problem is that adding an ability as such:
makes all the other default commands/abilities inaccessible. The bot just replies with "Sorry, group-only feature.", since it's, well, a default ability. I have to use this particular set of options (locality, privacy) to check message contents. There's no way to further chain the event or make the other abilities in the list usable.
I propose to allow processing of the update further down the chain (replace
Consumer
inAbility
withFunction<MessageContext, Boolean
and proceed to other abilities)The text was updated successfully, but these errors were encountered: