aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/event
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-29 09:46:40 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-29 09:46:40 +0200
commita2c73ff23ddcf11113cfdd31a6d3d66af3d0ca90 (patch)
treef074deec9a5fa7107df269e882e475a410f8816c /src/main/java/at/hannibal2/skyhanni/features/event
parentf8d12759270b23339c276f28863254bb84156686 (diff)
downloadskyhanni-a2c73ff23ddcf11113cfdd31a6d3d66af3d0ca90.tar.gz
skyhanni-a2c73ff23ddcf11113cfdd31a6d3d66af3d0ca90.tar.bz2
skyhanni-a2c73ff23ddcf11113cfdd31a6d3d66af3d0ca90.zip
added todo
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityNpc.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityNpc.kt b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityNpc.kt
index aaa4c365d..98362bc28 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityNpc.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityNpc.kt
@@ -16,7 +16,6 @@ import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.RenderUtils.highlight
import at.hannibal2.skyhanni.utils.SimpleTimeMark
import at.hannibal2.skyhanni.utils.SkyBlockTime
-import at.hannibal2.skyhanni.utils.SkyblockSeason
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import kotlin.time.Duration.Companion.seconds
@@ -37,6 +36,9 @@ object HoppityNpc {
@SubscribeEvent
fun onInventoryOpen(event: InventoryFullyOpenedEvent) {
if (event.inventoryName != "Hoppity") return
+ // TODO maybe we could add an annoying chat message that tells you how many years you have skipped
+ // or the last year you have opened the shop before.
+ // that way we verbally punish non active users in a funny and non harmful way
hoppityYearOpened = SkyBlockTime.now().year
inShop = true
}