aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2024-03-03 08:26:02 +1100
committerGitHub <noreply@github.com>2024-03-02 22:26:02 +0100
commit39034722fc251c71244ef8aa50bf3eb805e911aa (patch)
treebc575d16e931cb26f3d730f04a83e845dc2e9412 /src/main
parenteb6944e0a2a693c0245be86d794836baaf797f08 (diff)
downloadskyhanni-39034722fc251c71244ef8aa50bf3eb805e911aa.tar.gz
skyhanni-39034722fc251c71244ef8aa50bf3eb805e911aa.tar.bz2
skyhanni-39034722fc251c71244ef8aa50bf3eb805e911aa.zip
Backend: Remove dupe command (#1093)
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt18
1 files changed, 1 insertions, 17 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 a2a1e1a93..07635af14 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -269,22 +269,6 @@ object Commands {
"Skills XP/Level related command",
{ SkillAPI.onCommand(it) },
SkillAPI::onComplete)
- registerCommand0(
- "shcalccrop",
- "Calculate how many crops need to be farmed between different crop milestones.",
- {
- FarmingMilestoneCommand.onCommand(it.getOrNull(0), it.getOrNull(1), it.getOrNull(2), false)
- },
- FarmingMilestoneCommand::onComplete
- )
- registerCommand0(
- "shcalccroptime",
- "Calculate how long you need to farm crops between different crop milestones.",
- {
- FarmingMilestoneCommand.onCommand(it.getOrNull(0), it.getOrNull(1), it.getOrNull(2), true)
- },
- FarmingMilestoneCommand::onComplete
- )
}
private fun usersBugFix() {
@@ -579,4 +563,4 @@ object Commands {
if (args != null) function(args.asList().toTypedArray())
}
}
-} \ No newline at end of file
+}