aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--FEATURES.md7
-rw-r--r--build.gradle.kts2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/bingo/CompactBingoChat.kt14
5 files changed, 13 insertions, 18 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7f1a4d6fe..bc1b4cea9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,8 @@
+ In Melodys Harp, press buttons with your number row on the keyboard instead of clicking.
+ **Ender Node Tracker** - pretz
+ Tracks items and profit obtained from mining ender nodes and killing normal endermen.
++ **Fishing timer** now works in **Crystal Hollows** as well. (Worm fishing)
++ Option to shorten the **bestiary level-up message**.
### Changes
+ Added option to disable quick bingo card toggle with sneaking.
@@ -26,6 +28,10 @@
+ Should not crash anymore if a file in repo is missing.
+ Fixed Killer Spring tower still highlighting even with the feature turned off. - HiZe
+ Fixed weird tuba ability cooldown not working in rift.
+ = Fixed holy ice cooldown sometimes not working.
+ = Fixed a rare startup crash.
+ = Fixed Ghost stats after bestiary update. - HiZe
+ = Watchdog hider now correctly hides empty lines as well, even when empty line hider is disabled. - appable0
## Version 0.19
diff --git a/FEATURES.md b/FEATURES.md
index cce845341..af60c5c9c 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -22,6 +22,7 @@
- Compact Potion Effect Messages
- **Arachne Chat Hider**
- Hide chat messages about the Arachne Fight while outside of Arachne's Sanctuary
++ Option to shorten the **bestiary level-up** message.
## Dungeon
- Clicked Blocks (Showing the block behind walls AFTER clicked on a chest, wither essence or a lever)
@@ -124,7 +125,9 @@
- **Hide Bronze/Silver Duplicates** - Hiding chat message when catching a duplicate bronze/silver trophy fish.
- **Shorten Fishing Message** (Replacing the green chat message when fishing a sea creature with a more clean format)
- Highlight Thunder Sparks that spawn after killing a Thunder.
-- **Barn Timer** - Show the time and amount of sea creatures while fishing on the barn via hub.
+- **Barn Timer**
+ - Show the time and amount of sea creatures while fishing on the barn via hub.
+ - Works in crystal hollows too (worm fishing)
- **Shark Fish Counter** - Counts how many sharks have been caught.
- **Odger waypoint** - Show the Odger waypoint when trophy fishes are in the inventory and no lava rod in hand.
+ Showing fished item names
@@ -214,7 +217,7 @@
+ Mark the own player name.
## Bingo
-+ Shortens chat messages about skill level ups, collection gains, new area discoveries, and bestiarity upgrades while on bingo.
++ Shortens chat messages about skill level ups, collection gains and new area discoveries while on bingo.
+ Bingo Card
## Mobs
diff --git a/build.gradle.kts b/build.gradle.kts
index d54b6d8fb..90edd5c23 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -10,7 +10,7 @@ plugins {
}
group = "at.hannibal2.skyhanni"
-version = "0.20.Beta.2"
+version = "0.20.Beta.3"
// Toolchains:
java {
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index cc0711452..33cad95fd 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -123,7 +123,7 @@ import org.apache.logging.log4j.Logger
clientSideOnly = true,
useMetadata = true,
guiFactory = "at.hannibal2.skyhanni.config.ConfigGuiForgeInterop",
- version = "0.20.Beta.2",
+ version = "0.20.Beta.3",
)
class SkyHanniMod {
@Mod.EventHandler
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/CompactBingoChat.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/CompactBingoChat.kt
index 23991e31c..c73806877 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/bingo/CompactBingoChat.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/CompactBingoChat.kt
@@ -15,7 +15,6 @@ class CompactBingoChat {
private var inCollectionLevelUp = false
private var collectionLevelUpLastLine: String? = null
private var newArea = 0//0 = nothing, 1 = after first message, 2 = after second message
- private var inBestiarity = false
private val healthPattern = " §r§7§8\\+§a.* §c❤ Health".toPattern()
private val strengthPattern = " §r§7§8\\+§a. §c❁ Strength".toPattern()
@@ -31,7 +30,6 @@ class CompactBingoChat {
inSkillLevelUp = false
inSkyblockLevelUp = false
inCollectionLevelUp = false
- inBestiarity = false
if (config.hideBorder) {
event.blockedReason = "compact_bingo_border"
}
@@ -42,7 +40,6 @@ class CompactBingoChat {
if (onSkyBlockLevelUp(message)) event.blockedReason = "compact_skyblock_level_up"
if (onCollectionLevelUp(message)) event.blockedReason = "compact_collection_level_up"
if (onNewAreaDiscovered(message)) event.blockedReason = "compact_new_area_discovered"
- if (onBestiarityUpgrade(message)) event.blockedReason = "compact_skill_level_up"
}
private fun onSkillLevelUp(message: String): Boolean {
@@ -130,15 +127,4 @@ class CompactBingoChat {
}
return false
}
-
- private fun onBestiarityUpgrade(message: String): Boolean {
- if (message.startsWith(" §r§3§lBESTIARY §b§l")) {
- inBestiarity = true
- return false
- }
-
- if (message.contains("§r§6§lBESTIARY MILESTONE")) return false
-
- return inBestiarity
- }
} \ No newline at end of file