diff --git a/application/src/main/java/org/togetherjava/tjbot/features/jshell/aws/JShellAWSCommand.java b/application/src/main/java/org/togetherjava/tjbot/features/jshell/aws/JShellAWSCommand.java index d930e9ca4e..5b3dcfe3c6 100644 --- a/application/src/main/java/org/togetherjava/tjbot/features/jshell/aws/JShellAWSCommand.java +++ b/application/src/main/java/org/togetherjava/tjbot/features/jshell/aws/JShellAWSCommand.java @@ -35,7 +35,7 @@ public class JShellAWSCommand extends SlashCommandAdapter { */ public JShellAWSCommand(JShellService jShellService) { super("jshell-aws", "Execute Java code in Discord!", CommandVisibility.GUILD); - getData().addOption(OptionType.STRING, CODE_PARAMETER, "The code to execute using JShell"); + getData().addOption(OptionType.STRING, CODE_PARAMETER, "The code to execute using JShell", true); this.jShellService = jShellService; }