Skip to content

Commit

Permalink
made dies required
Browse files Browse the repository at this point in the history
  • Loading branch information
Mast3rwaf1z committed Jun 8, 2024
1 parent 81e77e9 commit eafe6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/wordcount/actions/Roll.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Roll implements Action{
@Override
public CommandData initialize() {
return Commands.slash("roll", "Roll a die")
.addOption(OptionType.STRING, "dies", "Specify dies: <n>d<s> where n is number and s is size, multiple are seperated by space");
.addOption(OptionType.STRING, "dies", "Specify dies: <n>d<s> where n is number and s is size, multiple are seperated by space", true);
}

public Roll(){}
Expand Down

0 comments on commit eafe6f0

Please sign in to comment.