Implement invite link command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-20 16:07:04 +01:00
parent b14850acaa
commit 18db0282d5
7 changed files with 37 additions and 12 deletions

View File

@@ -17,7 +17,7 @@ public class DieCommand
{
event.reply("Sorry, only the bot owner can run this command!").setEphemeral(true).queue();
} else {
event.reply("Going to sleep! Cya :sparkles:").queue();
event.reply("Going to sleep! Cya ").queue();
Executors.newSingleThreadScheduledExecutor().schedule(HidekoBot::shutdown, 3, TimeUnit.SECONDS);
}
}