diff --git a/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/UltraEditorCommand.java b/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/UltraEditorCommand.java index 7c74257c..b67bcaef 100644 --- a/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/UltraEditorCommand.java +++ b/src/main/java/me/TechsCode/TechDiscordBot/module/cmds/UltraEditorCommand.java @@ -16,12 +16,12 @@ public UltraEditorCommand(TechDiscordBot bot) { @Override public String getName() { - return "ultraeditor"; + return "insaneeditor"; } @Override public String getDescription() { - return "Returns the Ultra Editor website!"; + return "Returns the Insane Editor website!"; } @Override @@ -41,6 +41,6 @@ public int getCooldown() { @Override public void onCommand(TextChannel channel, Member m, SlashCommandEvent e) { - e.reply("https://ultraeditor.tech").queue(); + e.reply("https://insaneeditor.com").queue(); } }