We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b46e638 commit 94d2784Copy full SHA for 94d2784
src/main/java/com/volmit/adapt/command/item/CommandExperience.java
@@ -39,7 +39,7 @@ public final class CommandExperience {
39
@SubCommandExecution
40
public void execute(CommandSender sender,
41
@Arg(id = "skillname") @Suggest(provider = AdaptSuggestionProvider.class) String skillName,
42
- @Arg(id = "amount") @Range int amount,
+ @Arg(id = "amount") @Range(min="1", max="100000") int amount,
43
@Arg(id = "player", optional = true) @Nullable Player player) {
44
45
Player targetPlayer = player;
0 commit comments