We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commands having multiple patterns only work for the single something of the seemingly random pattern:
something <requiredValue> something1
something <requiredValue> something2
something <requiredValue> something3
Also, applicable for patterns with more arguments like:
something <requiredValue> something1 <required1> [optional1]
something <requiredValue> something2 <required1>
The text was updated successfully, but these errors were encountered:
Real-life example:
@Executor public BukkitResponse assign(CommandSender sender, @Arg Player target, @Arg QuestMeta quest, @Arg Option<QuestMeta> requires) { // } @Executor(pattern = "assign @a * *") public BukkitResponse assign_all(CommandSender sender, @Arg QuestMeta quest, @Arg QuestMeta requires) { // }
Sorry, something went wrong.
No branches or pull requests
Commands having multiple patterns only work for the single something of the seemingly random pattern:
something <requiredValue> something1
something <requiredValue> something2
something <requiredValue> something3
Also, applicable for patterns with more arguments like:
something <requiredValue> something1 <required1> [optional1]
something <requiredValue> something2 <required1>
The text was updated successfully, but these errors were encountered: