diff --git a/CHANGELOG.md b/CHANGELOG.md index 705bee381b85..b837c69c97fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,23 @@ # SkyHanni - Change Log -## Version 0.9.1 +## Version 0.10 - Slayer -### Slayer +### Blaze Slayer + Added a cooldown when the Fire Pillars from the Blaze Slayer will kill you. -+ Added a faster and permanent display for the Blaze Slayer daggers ++ Added a faster and permanent display for the Blaze Slayer daggers. + Added custom countdown sound for the Fire Pillar timer for the Blaze Slayer. + Added hide sound and entities when building the Fire Pillar for the Blaze Slayer. + Added warning when the fire pit phase starts for the Blaze Slayer tier 3. + +### Slayer + Added warning when wrong slayer quest is selected, or killing mobs for the wrong slayer. + Added hide more poor slayer drop chat messages. ### Misc -+ Added option to hide armor or just helmet of other player or yourself ++ Added option to hide armor or just helmet of other player or yourself. ### Fixes -+Fixed overload damage gets not detected as damage splash ++ Fixed overload damage gets not detected as damage splash. ## Version 0.9 - Chat + Dungeon diff --git a/build.gradle.kts b/build.gradle.kts index 0db4de956662..cf56e1fd9d7e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "at.hannibal2.skyhanni" -version = "0.9.1" +version = "0.10" // Toolchains: java { diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index a1f91608c8f8..bc5045b7e167 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -59,7 +59,7 @@ public class SkyHanniMod { public static final String MODID = "skyhanni"; - public static final String VERSION = "0.9.1"; + public static final String VERSION = "0.10"; public static Features feature; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java index 531bc10dab21..bc584cbdb321 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java @@ -48,12 +48,12 @@ public class Slayer { public boolean firePitsWarning = false; @Expose - @ConfigOption(name = "Slayer Miniboss Highlight", desc = "Highlight slayer miniboss in blue color") + @ConfigOption(name = "Miniboss Highlight", desc = "Highlight slayer miniboss in blue color") @ConfigEditorBoolean public boolean slayerMinibossHighlight = false; @Expose - @ConfigOption(name = "Slayer Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color (supports beacon in hand and beacon flying)") + @ConfigOption(name = "Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color (supports beacon in hand and beacon flying)") @ConfigEditorBoolean public boolean slayerEndermanBeacon = false;