aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2024-02-20 00:59:39 +1100
committerGitHub <noreply@github.com>2024-02-19 14:59:39 +0100
commitc19a902d2ef4aa93ff2d3cc93230f067e9315b71 (patch)
tree588e197fa91adc383223948d003db565b5e9f5a5 /src/main/java/at/hannibal2/skyhanni/config
parentab769839034888bc10ddfb2ef815be2400d64641 (diff)
downloadskyhanni-c19a902d2ef4aa93ff2d3cc93230f067e9315b71.tar.gz
skyhanni-c19a902d2ef4aa93ff2d3cc93230f067e9315b71.tar.bz2
skyhanni-c19a902d2ef4aa93ff2d3cc93230f067e9315b71.zip
Created ActionBarUpdateEvent and used it. #977
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt10
1 files changed, 9 insertions, 1 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 6e7c80ce1..3a0290b6a 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -57,6 +57,7 @@ import at.hannibal2.skyhanni.test.SkyHanniConfigSearchResetCommand
import at.hannibal2.skyhanni.test.SkyHanniDebugsAndTests
import at.hannibal2.skyhanni.test.TestBingo
import at.hannibal2.skyhanni.test.WorldEdit
+import at.hannibal2.skyhanni.test.command.CopyActionBarCommand
import at.hannibal2.skyhanni.test.command.CopyBossbarCommand
import at.hannibal2.skyhanni.test.command.CopyItemCommand
import at.hannibal2.skyhanni.test.command.CopyNearbyEntitiesCommand
@@ -374,7 +375,14 @@ object Commands {
"shcopyentities",
"Copies entities in the specified radius around the player to the clipboard"
) { CopyNearbyEntitiesCommand.command(it) }
- registerCommand("shcopytablist", "Copies the tab list data to the clipboard") { TabListData.copyCommand(it) }
+ registerCommand(
+ "shcopytablist",
+ "Copies the tab list data to the clipboard"
+ ) { TabListData.copyCommand(it) }
+ registerCommand(
+ "shcopyactionbar",
+ "Copies the action bar to the clipboard, including formatting codes"
+ ) { CopyActionBarCommand.command(it) }
registerCommand(
"shcopyscoreboard",
"Copies the scoreboard data to the clipboard"