aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorBrandon <brandon.wamboldt@gmail.com>2023-12-08 11:36:38 -0400
committerGitHub <noreply@github.com>2023-12-08 16:36:38 +0100
commit4fa9b95a280515b1fa71425e8e1c61d5b4a009f6 (patch)
treec723592ca9ac1fe8b78db84c4b9ff0025da6c7b5 /src/main/java/at/hannibal2/skyhanni/config/commands
parentd56e3075c7d418e0004f072703e635e83e2a06cf (diff)
downloadskyhanni-4fa9b95a280515b1fa71425e8e1c61d5b4a009f6.tar.gz
skyhanni-4fa9b95a280515b1fa71425e8e1c61d5b4a009f6.tar.bz2
skyhanni-4fa9b95a280515b1fa71425e8e1c61d5b4a009f6.zip
Fix duplicate water hydra catch title, add shadows to titles (#749)
Better looking titles, added test command /shsendtitle and fixed Water Hydra warning showing up multiple times. #749
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 bd8cea0e7..910f938d0 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -7,6 +7,7 @@ import at.hannibal2.skyhanni.data.ChatManager
import at.hannibal2.skyhanni.data.GardenCropMilestonesCommunityFix
import at.hannibal2.skyhanni.data.GuiEditManager
import at.hannibal2.skyhanni.data.PartyAPI
+import at.hannibal2.skyhanni.data.TitleManager
import at.hannibal2.skyhanni.features.bingo.card.BingoCardDisplay
import at.hannibal2.skyhanni.features.bingo.card.nextstephelper.BingoNextStepHelper
import at.hannibal2.skyhanni.features.chat.Translator
@@ -319,6 +320,10 @@ object Commands {
"Play the specified sound effect at the given pitch and volume."
) { SoundUtils.command(it) }
registerCommand(
+ "shsendtitle",
+ "Display a title on the screen with the specified settings."
+ ) { TitleManager.command(it) }
+ registerCommand(
"shconfigmanagerreset",
"Reloads the config manager and rendering processors of MoulConfig. This §cWILL RESET §7your config, but also updating the java config files (names, description, orderings and stuff)."
) { SkyHanniDebugsAndTests.configManagerResetCommand(it) }