diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-26 12:45:56 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-26 12:45:56 +0200 |
commit | 85ce8d3e3f021e18346bfd439b1b0f9486ac3a0c (patch) | |
tree | f034d318f2dbfdf1d998bd6631e950f997b82f2a | |
parent | effd69e9f113c808dae5e51e2b55574886d0e230 (diff) | |
download | skyhanni-85ce8d3e3f021e18346bfd439b1b0f9486ac3a0c.tar.gz skyhanni-85ce8d3e3f021e18346bfd439b1b0f9486ac3a0c.tar.bz2 skyhanni-85ce8d3e3f021e18346bfd439b1b0f9486ac3a0c.zip |
0.19 Beta 14
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | FEATURES.md | 8 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 |
4 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d30b6252..fbd58de64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -83,6 +83,10 @@ + Wilted Berberis Helper + Option to only show the helper while standing on Farmland blocks + Option to hide the wilted berberis particles ++ **Vampire Slayer** features in Damage Indicator + + Show the amount of HP miss1ing untill the steak can be used on the vampire slayer on top of the boss. + + Show a timer until the boss leaves the invicible Mania Circles state. + + Show the percentage of HP next to the HP. ### Other New Features + Added **Frozen Treasure Tracker** (Contributed by CalMWolfs) diff --git a/FEATURES.md b/FEATURES.md index a3523ad79..23c31f6b8 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -143,7 +143,13 @@ - Option to show the health of Voidgloom Seraph 4 during the laser phase (useful when trying to phase skip) - Show when Revenant Horror 5 is about to BOOM. - Hide the vanilla nametag of damage indicator bosses. -- **Time to Kill** - Show the time it takes to kill the Slayer boss. +- **Time to Kill** + - Show the time it takes to kill the Slayer boss. ++ **Vampire Slayer** + + Show the amount of HP miss1ing untill the steak can be used on the vampire slayer on top of the boss. + + Show a timer until the boss leaves the invicible Mania Circles state. + + Show the percentage of HP next to the HP. + ## Slayer + Hide poor slayer drop chat messages. diff --git a/build.gradle.kts b/build.gradle.kts index 826ee1a8d..a2217924d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.19.Beta.13" +version = "0.19.Beta.14" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 525220523..3be3c73db 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -119,7 +119,7 @@ import org.apache.logging.log4j.Logger clientSideOnly = true, useMetadata = true, guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop", - version = "0.19.Beta.13", + version = "0.19.Beta.14", ) class SkyHanniMod { @Mod.EventHandler |