diff options
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt | 1 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/rift/ShowMotesNpcSellPrice.kt | 2 |
2 files changed, 0 insertions, 3 deletions
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 |