aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2024-07-17 18:49:28 +1000
committerGitHub <noreply@github.com>2024-07-17 10:49:28 +0200
commit23af2e0d2131b423837064065b33d75ba555d483 (patch)
tree89c5c265ec3e2af70e5be7642b34916965c1da32 /src
parent8d76767ab562ddb3a7912ac23c2b10c2c8195070 (diff)
downloadskyhanni-23af2e0d2131b423837064065b33d75ba555d483.tar.gz
skyhanni-23af2e0d2131b423837064065b33d75ba555d483.tar.bz2
skyhanni-23af2e0d2131b423837064065b33d75ba555d483.zip
Remove sh limbo (#2231)
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/MiscFeatures.kt4
2 files changed, 0 insertions, 8 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index 959f81973..c08595b5b 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -321,10 +321,6 @@ object Commands {
"Prints your Limbo Stats.\n §7This includes your Personal Best, Playtime, and §aSkyHanni User Luck§7!",
) { LimboTimeTracker.printStats() }
registerCommand(
- "shlimbo",
- "Warps you to Limbo.",
- ) { MiscFeatures.goToLimbo() }
- registerCommand(
"shlanedetection",
"Detect a farming lane in garden",
) { FarmingLaneCreator.commandLaneDetection() }
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/MiscFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/MiscFeatures.kt
index 123394e99..c34a49a7d 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/MiscFeatures.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/MiscFeatures.kt
@@ -54,8 +54,4 @@ object MiscFeatures {
fun onConfigFix(event: ConfigUpdaterMigrator.ConfigFixEvent) {
event.move(2, "mobs", "combat.mobs")
}
-
- fun goToLimbo() {
- ChatUtils.sendMessageToServer("§")
- }
}