aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorStella <stellaarnott1@gmail.com>2024-10-13 03:43:48 -0700
committerGitHub <noreply@github.com>2024-10-13 12:43:48 +0200
commit6f52ce2e3e42ac794c28a8a6eb7f0ae04553b1f6 (patch)
tree5f8736083bc8ab2690d20a184a3190647aba3aef /src/main/java/at/hannibal2/skyhanni/config/commands
parent486231d369a8e2e8cf54f079d6105dac99dec6aa (diff)
downloadskyhanni-6f52ce2e3e42ac794c28a8a6eb7f0ae04553b1f6.tar.gz
skyhanni-6f52ce2e3e42ac794c28a8a6eb7f0ae04553b1f6.tar.bz2
skyhanni-6f52ce2e3e42ac794c28a8a6eb7f0ae04553b1f6.zip
Feature: Terminal Waypoints (#2719)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: Empa <itsempa@users.noreply.github.com> Co-authored-by: Empa <42304516+ItsEmpa@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt5
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 bd94a1658..c5a28679e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -25,6 +25,7 @@ import at.hannibal2.skyhanni.features.commands.PartyChatCommands
import at.hannibal2.skyhanni.features.commands.PartyCommands
import at.hannibal2.skyhanni.features.commands.WikiManager
import at.hannibal2.skyhanni.features.dungeon.CroesusChestTracker
+import at.hannibal2.skyhanni.features.dungeon.floor7.TerminalInfo
import at.hannibal2.skyhanni.features.event.diana.AllBurrowsList
import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper
import at.hannibal2.skyhanni.features.event.diana.DianaProfitTracker
@@ -501,6 +502,10 @@ object Commands {
"shdebugscoreboard",
"Monitors the scoreboard changes: Prints the raw scoreboard lines in the console after each update, with time since last update.",
) { ScoreboardData.toggleMonitor() }
+ registerCommand(
+ "shresetterminal",
+ "Resets terminal highlights in F7.",
+ ) { TerminalInfo.resetTerminals() }
}
@Suppress("LongMethod")