diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-24 21:03:21 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-24 21:03:21 +0200 |
commit | 48812f4af2b7f2f5c6e45801802fa8bc7a5c8705 (patch) | |
tree | b8c08fdcb0a636b72ca222d1c313bcc6b2113dbb | |
parent | 8d6719dc19d9def0365d6b421ef3168a2cd0782e (diff) | |
download | skyhanni-48812f4af2b7f2f5c6e45801802fa8bc7a5c8705.tar.gz skyhanni-48812f4af2b7f2f5c6e45801802fa8bc7a5c8705.tar.bz2 skyhanni-48812f4af2b7f2f5c6e45801802fa8bc7a5c8705.zip |
released 0.10
-rw-r--r-- | CHANGELOG.md | 12 | ||||
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java | 4 |
4 files changed, 11 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 705bee381..b837c69c9 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 0db4de956..cf56e1fd9 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 a1f91608c..bc5045b7e 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -59,7 +59,7 @@ import java.util.List; 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 531bc10da..bc584cbdb 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; |