From a7c6e08864f4d7a2ebf5776d2b4d5c8f1a691b56 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Thu, 4 Apr 2024 05:10:32 +1100 Subject: Backend: Make all event names uniform (#1290) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../at/hannibal2/skyhanni/features/fame/AccountUpgradeReminder.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/fame') diff --git a/src/main/java/at/hannibal2/skyhanni/features/fame/AccountUpgradeReminder.kt b/src/main/java/at/hannibal2/skyhanni/features/fame/AccountUpgradeReminder.kt index a383d8683..4f1e3b5ea 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/fame/AccountUpgradeReminder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/fame/AccountUpgradeReminder.kt @@ -61,7 +61,7 @@ class AccountUpgradeReminder { } @SubscribeEvent - fun onInventoryLoad(event: InventoryFullyOpenedEvent) { + fun onInventoryOpen(event: InventoryFullyOpenedEvent) { if (!LorenzUtils.inSkyBlock) return inInventory = event.inventoryName == "Community Shop" } @@ -84,7 +84,7 @@ class AccountUpgradeReminder { } @SubscribeEvent - fun onUpgradeStarted(event: LorenzChatEvent) { + fun onChat(event: LorenzChatEvent) { if (claimedRegex.matches(event.message)) { clearUpgrade() } else { -- cgit