diff options
| author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-06-06 00:01:30 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-05 16:01:30 +0200 |
| commit | eb7fd3da94cec90674e29e93ca0d744e2a2889fb (patch) | |
| tree | a83d663c1229207b0cf5977290aa2609ba22efec /src/main/java/at/hannibal2/skyhanni/data | |
| parent | 5a04ad230cc4fb94884b34f795124d3b65af07ea (diff) | |
| download | skyhanni-eb7fd3da94cec90674e29e93ca0d744e2a2889fb.tar.gz skyhanni-eb7fd3da94cec90674e29e93ca0d744e2a2889fb.tar.bz2 skyhanni-eb7fd3da94cec90674e29e93ca0d744e2a2889fb.zip | |
Backend: More second passed (#1899)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt index 51f9fb6be..c9ca7f62d 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt @@ -3,10 +3,10 @@ package at.hannibal2.skyhanni.data import at.hannibal2.skyhanni.data.jsonobjects.repo.ArrowTypeJson import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent import at.hannibal2.skyhanni.events.LorenzChatEvent -import at.hannibal2.skyhanni.events.LorenzTickEvent import at.hannibal2.skyhanni.events.OwnInventoryItemUpdateEvent import at.hannibal2.skyhanni.events.QuiverUpdateEvent import at.hannibal2.skyhanni.events.RepositoryReloadEvent +import at.hannibal2.skyhanni.events.SecondPassedEvent import at.hannibal2.skyhanni.test.command.ErrorManager import at.hannibal2.skyhanni.utils.InventoryUtils import at.hannibal2.skyhanni.utils.ItemCategory @@ -273,7 +273,7 @@ object QuiverAPI { } @SubscribeEvent - fun onTick(event: LorenzTickEvent) { + fun onSecondPassed(event: SecondPassedEvent) { if (!isEnabled()) return if (event.repeatSeconds(2)) { checkChestplate() |
