aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-19 11:58:34 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-19 11:58:34 +0100
commit71913ed849ea4c7ccc701092f4aa94945663fcf0 (patch)
treed55eba704334370c763a30382050cb2297654591
parentd44509bb2487525c7a0e3e2e29896f295bd6d3de (diff)
downloadskyhanni-71913ed849ea4c7ccc701092f4aa94945663fcf0.tar.gz
skyhanni-71913ed849ea4c7ccc701092f4aa94945663fcf0.tar.bz2
skyhanni-71913ed849ea4c7ccc701092f4aa94945663fcf0.zip
Fixed nether features being visible outside nether
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt
index 1e03f67d8..611330339 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt
@@ -352,6 +352,6 @@ class DailyQuestHelper(val reputationHelper: CrimsonIsleReputationHelper) {
SkyHanniMod.feature.hidden.crimsonIsleLatestTrophyFishInInventory = latestTrophyFishInInventory
}
- private fun isEnabled() = LorenzUtils.inSkyBlock && LorenzUtils.skyBlockIsland != IslandType.CRIMSON_ISLE &&
+ private fun isEnabled() = LorenzUtils.inSkyBlock && LorenzUtils.skyBlockIsland == IslandType.CRIMSON_ISLE &&
SkyHanniMod.feature.misc.crimsonIsleReputationHelper
} \ No newline at end of file