diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-04-04 05:10:32 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-03 20:10:32 +0200 |
commit | a7c6e08864f4d7a2ebf5776d2b4d5c8f1a691b56 (patch) | |
tree | 8db33de28c4ed5b922dc180105a1e81ae19e300d /src/main/java/at/hannibal2/skyhanni/features/minion | |
parent | b19e2ed181ef8618d71ad33960befceff510cfa9 (diff) | |
download | skyhanni-a7c6e08864f4d7a2ebf5776d2b4d5c8f1a691b56.tar.gz skyhanni-a7c6e08864f4d7a2ebf5776d2b4d5c8f1a691b56.tar.bz2 skyhanni-a7c6e08864f4d7a2ebf5776d2b4d5c8f1a691b56.zip |
Backend: Make all event names uniform (#1290)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/minion')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/minion/MinionXp.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/minion/MinionXp.kt b/src/main/java/at/hannibal2/skyhanni/features/minion/MinionXp.kt index 56dddeb13..c98a32a68 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/minion/MinionXp.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/minion/MinionXp.kt @@ -141,7 +141,7 @@ class MinionXp { } @SubscribeEvent - fun onItemTooltipEvent(event: LorenzToolTipEvent) { + fun onTooltip(event: LorenzToolTipEvent) { if (!LorenzUtils.inSkyBlock) return if (!config.xpDisplay) return when { @@ -168,7 +168,7 @@ class MinionXp { } @SubscribeEvent - fun onIslandChangeEvent(event: IslandChangeEvent) { + fun onIslandChange(event: IslandChangeEvent) { minionStorages.clear() xpItemMap.clear() collectItemXpList.clear() |