aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Minions.java8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/minion/MinionHelper.kt2
3 files changed, 11 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7ac54d3cc..b460155fc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,11 +4,15 @@
### New Features
- Added a display that shows the last time the hopper inside a minion has been emptied
+- Added marker to the location of the last clicked minion (even through walls)
+- Added showing stars on all items (not only dungeon and master stars but also crimson armors and cloaks)
+- Added a display timer that shows the real time
### Minor Changes
- Summoning souls display is rendering better close to corners
- Ashfang gravity orbs are now rendering better close to corners
-- Showing the name of ashfang gravity orbs tag above
+- Showing the name of ashfang gravity orbs as a nametag above
+- Bazaar how knows books and essences (thanks again, hypixel)
### Bug Fixes
-- Damage Indicator damage over time display swapping orders \ No newline at end of file
+- Fixed damage Indicator damage over time display order swapping sometimes \ No newline at end of file
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java
index 605a261e8..f59008917 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java
@@ -7,13 +7,13 @@ public class Minions {
@ConfigOption(name = "Last Clicked", desc = "")
@ConfigEditorAccordion(id = 0)
- public boolean lastMinion = false;
+ public boolean lastClickedMinion = false;
@Expose
- @ConfigOption(name = "Last Minion Display", desc = "Show the last opened minion on your island")
+ @ConfigOption(name = "Last Minion Display", desc = "Marks the location of the last clicked minion (even through walls)")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
- public boolean lastOpenedMinionDisplay = false;
+ public boolean lastClickedMinionDisplay = false;
@Expose
@ConfigOption(
@@ -50,7 +50,7 @@ public class Minions {
@Expose
@ConfigOption(
name = "Emptied Time Distance",
- desc = "At what distance is this text displayed"
+ desc = "At what distance is this display shown"
)
@ConfigEditorSlider(
minValue = 3,
diff --git a/src/main/java/at/hannibal2/skyhanni/features/minion/MinionHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/minion/MinionHelper.kt
index 956fe7eea..039dd06df 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/minion/MinionHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/minion/MinionHelper.kt
@@ -58,7 +58,7 @@ class MinionHelper {
fun onRenderLastClickedMinion(event: RenderWorldLastEvent) {
if (!LorenzUtils.inSkyblock) return
if (LorenzUtils.skyBlockIsland != "Private Island") return
- if (!SkyHanniMod.feature.minions.lastOpenedMinionDisplay) return
+ if (!SkyHanniMod.feature.minions.lastClickedMinionDisplay) return
val special = SkyHanniMod.feature.minions.lastOpenedMinionColor
val color = Color(SpecialColour.specialToChromaRGB(special), true)