aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin
diff options
context:
space:
mode:
authorjani270 <69345714+jani270@users.noreply.github.com>2023-12-14 18:05:48 +0100
committerGitHub <noreply@github.com>2023-12-14 18:05:48 +0100
commit27bfa73de7df93814ca7e60c7d8c25ac6fed6edd (patch)
treea468fc1843eb78503071a855556a8bdb76364c25 /src/main/kotlin
parent4f487f0fb54f7e239fa5298f55ed3011150c4677 (diff)
downloadNotEnoughUpdates-27bfa73de7df93814ca7e60c7d8c25ac6fed6edd.tar.gz
NotEnoughUpdates-27bfa73de7df93814ca7e60c7d8c25ac6fed6edd.tar.bz2
NotEnoughUpdates-27bfa73de7df93814ca7e60c7d8c25ac6fed6edd.zip
Added option to show skymall perk outside of mining islands and fixed skymall showing the wrong perk (#965)
* Fixed Skymall showing wrong perk * Added option to show skymall perk outside of mining islands * Fixed upsi
Diffstat (limited to 'src/main/kotlin')
-rw-r--r--src/main/kotlin/io/github/moulberry/notenoughupdates/guifeatures/SkyMallDisplay.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/guifeatures/SkyMallDisplay.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/guifeatures/SkyMallDisplay.kt
index 2332da13..cfc47d1a 100644
--- a/src/main/kotlin/io/github/moulberry/notenoughupdates/guifeatures/SkyMallDisplay.kt
+++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/guifeatures/SkyMallDisplay.kt
@@ -40,7 +40,6 @@ class SkyMallDisplay {
@SubscribeEvent(receiveCanceled = true)
fun onChatReceive(event: ClientChatReceivedEvent) {
if (!NotEnoughUpdates.INSTANCE.hasSkyblockScoreboard()) return
- if (SBInfo.getInstance().getLocation() != "mining_3" && SBInfo.getInstance().getLocation() != "crystal_hollows") return
val matcher = pattern.matcher(event.message.formattedText)
if (!matcher.matches()) return