diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-19 13:02:29 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-19 13:02:29 +0200 |
commit | a9cfc1db8d5a9436a0c3def82492fcf0d66240c4 (patch) | |
tree | 06bf1a45800d4577800baf656f1bbf0ac176c55d /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 3c9a36985344f748628c763c1898452727a8d4cc (diff) | |
download | skyhanni-a9cfc1db8d5a9436a0c3def82492fcf0d66240c4.tar.gz skyhanni-a9cfc1db8d5a9436a0c3def82492fcf0d66240c4.tar.bz2 skyhanni-a9cfc1db8d5a9436a0c3def82492fcf0d66240c4.zip |
off-screen farming weight lb change and /shfarmingprofile
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 5 |
1 files changed, 5 insertions, 0 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 478eb4a4b..118af32e7 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -16,6 +16,7 @@ import at.hannibal2.skyhanni.features.garden.GardenCropTimeCommand import at.hannibal2.skyhanni.features.garden.composter.ComposterOverlay import at.hannibal2.skyhanni.features.garden.farming.CropMoneyDisplay import at.hannibal2.skyhanni.features.garden.farming.CropSpeedMeter +import at.hannibal2.skyhanni.features.garden.farming.FarmingWeightDisplay import at.hannibal2.skyhanni.features.garden.farming.GardenStartLocation import at.hannibal2.skyhanni.features.garden.fortuneguide.CaptureFarmingGear import at.hannibal2.skyhanni.features.garden.fortuneguide.FFGuideGUI @@ -136,6 +137,10 @@ object Commands { ) { clearFarmingItems() } registerCommand("shresetghostcounter", "Resets the ghost counter stats") { GhostUtil.reset() } registerCommand("shbingotoggle", "Toggle the bingo card display mode") { BingoCardDisplay.toggleCommand() } + registerCommand( + "shfarmingprofile", + "Look up the farming profile from yourself or another player on elitebot.dev" + ) { FarmingWeightDisplay.lookUpCommand(it) } } private fun usersBugFix() { |