diff options
author | Brandon <brandon.wamboldt@gmail.com> | 2023-12-08 11:36:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 16:36:38 +0100 |
commit | 4fa9b95a280515b1fa71425e8e1c61d5b4a009f6 (patch) | |
tree | c723592ca9ac1fe8b78db84c4b9ff0025da6c7b5 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | d56e3075c7d418e0004f072703e635e83e2a06cf (diff) | |
download | skyhanni-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.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 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) } |