diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-11 10:06:57 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-11 10:06:57 +0100 |
commit | 8ee609dbba93a0e2d46b887fa5f605a023dd77f5 (patch) | |
tree | ced3a061e99bcbe4e2eca6f103a8f6b353cc06e5 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 2555c80da022c5ba005056fcd73bb97d4a60cdd0 (diff) | |
download | skyhanni-8ee609dbba93a0e2d46b887fa5f605a023dd77f5.tar.gz skyhanni-8ee609dbba93a0e2d46b887fa5f605a023dd77f5.tar.bz2 skyhanni-8ee609dbba93a0e2d46b887fa5f605a023dd77f5.zip |
Added debug command /shtestburrow
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 f958591c1..dd08c4f93 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.combat.ghostcounter.GhostUtil import at.hannibal2.skyhanni.features.commands.PartyCommands import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper import at.hannibal2.skyhanni.features.event.diana.DianaProfitTracker +import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper import at.hannibal2.skyhanni.features.event.diana.InquisitorWaypointShare import at.hannibal2.skyhanni.features.event.diana.MythologicalCreatureTracker import at.hannibal2.skyhanni.features.event.jerry.frozentreasure.FrozenTreasureTracker @@ -308,6 +309,10 @@ object Commands { "shconfigsave", "Manually saving the config" ) { SkyHanniMod.configManager.saveConfig(ConfigFileType.FEATURES, "manual-command") } + registerCommand( + "shtestburrow", + "Sets a test burrow waypoint at your location" + ) { GriffinBurrowHelper.setTestBurrow(it) } } private fun developersCodingHelp() { |