diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-05-04 03:53:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 03:53:53 +0200 |
commit | dbd3a57152337fd28ae4aab8ac86460a46c6d90d (patch) | |
tree | 2dbd9420a891011d104b63966504d8f0373b4846 /src/main/java/at/hannibal2/skyhanni/features/event | |
parent | 5aa996903132756d79496d17c1e3c64c13b6b9cd (diff) | |
download | skyhanni-dbd3a57152337fd28ae4aab8ac86460a46c6d90d.tar.gz skyhanni-dbd3a57152337fd28ae4aab8ac86460a46c6d90d.tar.bz2 skyhanni-dbd3a57152337fd28ae4aab8ac86460a46c6d90d.zip |
Improvement: Show during contest (#1670)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggsManager.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggsManager.kt b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggsManager.kt index 8ed60d670..5ebe075bc 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggsManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggsManager.kt @@ -132,7 +132,7 @@ object HoppityEggsManager { fun onRenderOverlay(event: GuiRenderEvent.GuiOverlayRenderEvent) { if (!LorenzUtils.inSkyBlock) return if (!config.showClaimedEggs) return - if (ReminderUtils.isBusy()) return + if (ReminderUtils.isBusy(config.showDuringContest)) return if (!ChocolateFactoryAPI.isHoppityEvent()) return val displayList = HoppityEggType.entries |