From f477725cc246d4600b5dd694165bcd9cdfa5c38f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 10 Jul 2023 19:36:30 +0200 Subject: Removed debug --- src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt | 1 - .../java/at/hannibal2/skyhanni/features/rift/ShowMotesNpcSellPrice.kt | 2 -- 2 files changed, 3 deletions(-) (limited to 'src/main/java/at/hannibal2') diff --git a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt index 4ee209670..53ae2935e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt @@ -31,7 +31,6 @@ class BazaarDataHolder { } jsonObject["motes_sell_price"]?.let { val neuItemId = NEUItems.transHypixelNameToInternalName(hypixelId) - println("motes price: $neuItemId = $it") motesPrice[neuItemId] = it.asDouble } } diff --git a/src/main/java/at/hannibal2/skyhanni/features/rift/ShowMotesNpcSellPrice.kt b/src/main/java/at/hannibal2/skyhanni/features/rift/ShowMotesNpcSellPrice.kt index 404e1f3e2..2de528b7f 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/rift/ShowMotesNpcSellPrice.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/rift/ShowMotesNpcSellPrice.kt @@ -10,8 +10,6 @@ class ShowMotesNpcSellPrice { @SubscribeEvent fun onItemTooltipLow(event: ItemTooltipEvent) { -// if (!SkyHanniMod.feature.dev.showInternalName) return - if (!isEnabled()) return val itemStack = event.itemStack ?: return -- cgit