diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-12-14 18:05:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 18:05:48 +0100 |
commit | 27bfa73de7df93814ca7e60c7d8c25ac6fed6edd (patch) | |
tree | a468fc1843eb78503071a855556a8bdb76364c25 /src/main/kotlin | |
parent | 4f487f0fb54f7e239fa5298f55ed3011150c4677 (diff) | |
download | NotEnoughUpdates-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.kt | 1 |
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 |