diff options
-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 |