From 9056242b15e1cfc3ee172b28cd028827fb22889c Mon Sep 17 00:00:00 2001 From: MicrocontrollersDev <66657148+MicrocontrollersDev@users.noreply.github.com> Date: Thu, 8 Aug 2024 20:18:01 -0700 Subject: [PATCH] remove: limbo command (#491) --- .../kotlin/gg/skytils/skytilsmod/Skytils.kt | 1 - .../skytilsmod/commands/impl/LimboCommand.kt | 35 ------------------- 2 files changed, 36 deletions(-) delete mode 100644 src/main/kotlin/gg/skytils/skytilsmod/commands/impl/LimboCommand.kt diff --git a/src/main/kotlin/gg/skytils/skytilsmod/Skytils.kt b/src/main/kotlin/gg/skytils/skytilsmod/Skytils.kt index e137637b8..9f16e8d01 100644 --- a/src/main/kotlin/gg/skytils/skytilsmod/Skytils.kt +++ b/src/main/kotlin/gg/skytils/skytilsmod/Skytils.kt @@ -422,7 +422,6 @@ class Skytils { cch.registerCommand(FragBotCommand) cch.registerCommand(HollowWaypointCommand) cch.registerCommand(ItemCycleCommand) - cch.registerCommand(LimboCommand) cch.registerCommand(OrderedWaypointCommand) cch.registerCommand(ScamCheckCommand) cch.registerCommand(SlayerCommand) diff --git a/src/main/kotlin/gg/skytils/skytilsmod/commands/impl/LimboCommand.kt b/src/main/kotlin/gg/skytils/skytilsmod/commands/impl/LimboCommand.kt deleted file mode 100644 index 812fbf2f4..000000000 --- a/src/main/kotlin/gg/skytils/skytilsmod/commands/impl/LimboCommand.kt +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Skytils - Hypixel Skyblock Quality of Life Mod - * Copyright (C) 2020-2023 Skytils - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published - * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package gg.skytils.skytilsmod.commands.impl - -import gg.essential.universal.UChat -import gg.skytils.skytilsmod.Skytils.Companion.failPrefix -import gg.skytils.skytilsmod.commands.BaseCommand -import gg.skytils.skytilsmod.utils.Utils -import net.minecraft.client.entity.EntityPlayerSP - -object LimboCommand : BaseCommand("limbo", listOf("skytilslimbo")) { - override fun processCommand(player: EntityPlayerSP, args: Array) { - if (!Utils.isOnHypixel) { - UChat.chat("$failPrefix §cYou must be on Hypixel to use this command!") - return - } - player.sendChatMessage("§") - } -} \ No newline at end of file