aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-10 19:36:30 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-10 19:36:30 +0200
commitf477725cc246d4600b5dd694165bcd9cdfa5c38f (patch)
tree01a336f63b7d631a1e9ff4f49cdb8248979ee941 /src/main/java/at/hannibal2
parentf881d99d5594362e5561b6971d25fdd9b78d787e (diff)
downloadskyhanni-f477725cc246d4600b5dd694165bcd9cdfa5c38f.tar.gz
skyhanni-f477725cc246d4600b5dd694165bcd9cdfa5c38f.tar.bz2
skyhanni-f477725cc246d4600b5dd694165bcd9cdfa5c38f.zip
Removed debug
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt1
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/rift/ShowMotesNpcSellPrice.kt2
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