Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
May2Beez committed Oct 17, 2023
2 parents 6f9f734 + 007c965 commit 03aa0ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("net.kyori.blossom") version "1.3.1"
}

version = "4.5.42-pre"
version = "4.5.43-pre"

repositories {
maven("https://jitpack.io")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

import com.jelly.farmhelper.remote.WebsocketHandler;
import com.jelly.farmhelper.remote.discordStruct.DiscordCommand;
import com.jelly.farmhelper.remote.discordStruct.Option;
import com.jelly.farmhelper.remote.waiter.Waiter;
import com.jelly.farmhelper.remote.waiter.WaiterHandler;
import net.dv8tion.jda.api.EmbedBuilder;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import net.dv8tion.jda.api.interactions.commands.OptionType;


import java.util.Objects;

Expand All @@ -15,6 +18,10 @@ public class Toggle extends DiscordCommand {

public Toggle() {
super(Toggle.name, Toggle.description);
addOptions(
new Option(OptionType.STRING, "ign", "The IGN of the player you want to toggle this account", false, true)
);

}

@Override
Expand Down

0 comments on commit 03aa0ea

Please sign in to comment.