From 09bad8c1ab9801b54869b75343d7c9642eab5674 Mon Sep 17 00:00:00 2001 From: ViorisE <66145187+ViorisE-AI@users.noreply.github.com> Date: Tue, 7 Dec 2021 11:31:08 +0100 Subject: [PATCH] Changed UltraEditor to InsaneEditor Modified the link that was sent when doing /ultraeditor. --- .../TechDiscordBot/module/cmds/UltraEditorCommand.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); } }