aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-05-24 21:26:08 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-05-24 21:26:08 +0200
commit1ab8930cee2d6740b9b9dbf0a496c5e6e0f195fe (patch)
tree0018f7a2f60573c67d92d86c91b4a2264c12ed9b /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
parentd6df4f69afbe547a8e9373b0be4baa69d9e02a54 (diff)
downloadskyhanni-1ab8930cee2d6740b9b9dbf0a496c5e6e0f195fe.tar.gz
skyhanni-1ab8930cee2d6740b9b9dbf0a496c5e6e0f195fe.tar.bz2
skyhanni-1ab8930cee2d6740b9b9dbf0a496c5e6e0f195fe.zip
Added Estimated Armor Value display
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 555761bbe..ef7d6b6ab 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -43,6 +43,8 @@ import at.hannibal2.skyhanni.features.minion.MinionCollectLogic
import at.hannibal2.skyhanni.features.minion.MinionFeatures
import at.hannibal2.skyhanni.features.misc.*
import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager
+import at.hannibal2.skyhanni.features.misc.items.EstimatedItemValue
+import at.hannibal2.skyhanni.features.misc.items.EstimatedWardrobePrice
import at.hannibal2.skyhanni.features.misc.teleportpad.TeleportPadCompactName
import at.hannibal2.skyhanni.features.misc.teleportpad.TeleportPadInventoryNumber
import at.hannibal2.skyhanni.features.misc.tiarelay.TiaRelayHelper
@@ -252,7 +254,8 @@ class SkyHanniMod {
loadModule(GardenComposterInventoryFeatures())
loadModule(MinionCollectLogic())
loadModule(PasteIntoSigns())
- loadModule(EstimatedItemValue())
+ loadModule(EstimatedItemValue)
+ loadModule(EstimatedWardrobePrice())
loadModule(ComposterInventoryNumbers())
loadModule(FarmingFortuneDisplay())
loadModule(ToolTooltipTweaks())