aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--FEATURES.md8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java8
3 files changed, 12 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3b155b5d1..907b60a71 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -264,16 +264,16 @@
+ This contains RNG Meter, Slayer quest warning and Items on ground
+ Added item ability cooldown support for **Weirder Tuba** and **Holy Ice** - HiZe
+ Added **Lazer Parkour** Solver - CalMWolfs
- + Highlights the location of the invisible blocks in the MirrorVerse
+ + Highlights the location of the invisible blocks in the Mirrorverse
+ Added Mirrorverse **Dance Room Helper** - HiZe
- + Helps to solve the dance room in the mirror verse by showing multiple tasks at once.
+ + Helps to solve the dance room in the Mirrorverse by showing multiple tasks at once.
+ Change how many tasks you should see
+ Hide other players inside the dance room
+ Added timer before next instruction
+ Option to hide default title (instructions, "Keep it up!" and "It's happening!")
+ Fully customize the description for now, next and later (with color)
+ Added **Upside Down** Parkour & **Lava Maze** - hannibal2
- + Helps to solve the Upside Down Parkour and Lava Maze in the mirror verse by showing the correct way
+ + Helps to solve the Upside Down Parkour and Lava Maze in the Mirrorverse by showing the correct way
+ Change how many platforms should be shown in front of you
+ Rainbow color (optional) - nea
+ Hide other players while doing the parkour
@@ -1124,4 +1124,4 @@
- Added item ability cooldown background display (over the slot, work in progress)
- Added Ashfang freeze cooldown (when you get hit by “anti ability” and slowness effect)
- Changed “hot clickable items” to show items again, but only with dark gray overlay. Looks nicer
-- Made the GitHub repository public \ No newline at end of file
+- Made the GitHub repository public
diff --git a/FEATURES.md b/FEATURES.md
index 7c620e6ba..143adb4f3 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -443,16 +443,16 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **Crux Talisman Progress** Display - HiZe
+ Show bonuses you get from the talisman
+ **Lazer Parkour** Solver - CalMWolfs
- + Highlights the location of the invisible blocks in the MirrorVerse
+ + Highlights the location of the invisible blocks in the Mirrorverse
+ Mirrorverse **Dance Room Helper** - HiZe
- + Helps to solve the dance room in the mirror verse by showing multiple tasks at once.
+ + Helps to solve the dance room in the Mirrorverse by showing multiple tasks at once.
+ Change how many tasks you should see
+ Hide other players inside the dance room
+ Timer before next instruction
+ Option to hide default title (instructions, "Keep it up!" and "It's happening!")
+ Fully customize the description for now, next and later (with color)
+ **Upside Down** Parkour & **Lava Maze** - hannibal2
- + Helps to solve the Upside Down Parkour and Lava Maze in the mirror verse by showing the correct way
+ + Helps to solve the Upside Down Parkour and Lava Maze in the Mirrorverse by showing the correct way
+ Change how many platforms should be shown in front of you
+ Rainbow color (optional) - nea
+ Hide other players while doing the parkour
@@ -620,4 +620,4 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ **Following Line** - hannibal2
+ Draws a colored line behind the player.
- + Change the color, width, and duration of the line. \ No newline at end of file
+ + Change the color, width, and duration of the line.
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
index fa099ad29..bfa351fbd 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
@@ -250,7 +250,7 @@ public class RiftConfig {
}
}
- @ConfigOption(name = "Mirror Verse", desc = "")
+ @ConfigOption(name = "Mirrorverse", desc = "")
@Accordion
@Expose
public MirrorVerse mirrorVerseConfig = new MirrorVerse();
@@ -265,7 +265,7 @@ public class RiftConfig {
public static class LavaMazeConfig {
@Expose
- @ConfigOption(name = "Enabled", desc = "Helps solving the lava maze in the mirror verse by showing the correct way.")
+ @ConfigOption(name = "Enabled", desc = "Helps solving the lava maze in the Mirrorverse by showing the correct way.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@@ -301,7 +301,7 @@ public class RiftConfig {
public static class UpsideDownParkour {
@Expose
- @ConfigOption(name = "Enabled", desc = "Helps solving the upside down parkour in the mirror verse by showing the correct way.")
+ @ConfigOption(name = "Enabled", desc = "Helps solving the upside down parkour in the Mirrorverse by showing the correct way.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@@ -342,7 +342,7 @@ public class RiftConfig {
public static class DanceRoomHelper {
@Expose
- @ConfigOption(name = "Enabled", desc = "Helps to solve the dance room in the mirror verse by showing multiple tasks at once.")
+ @ConfigOption(name = "Enabled", desc = "Helps to solve the dance room in the Mirrorverse by showing multiple tasks at once.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;