summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/test
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-10 14:33:20 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-10 14:33:20 +0200
commit698ebfb1a5673e52f97c681d41a1eb4becf92df7 (patch)
tree42bcd3a46d2e6814940a0924593d642a2982c15b /src/main/java/at/hannibal2/skyhanni/test
parent90b7eba90154668696d69766aed7be1aae61b9a6 (diff)
downloadskyhanni-698ebfb1a5673e52f97c681d41a1eb4becf92df7.tar.gz
skyhanni-698ebfb1a5673e52f97c681d41a1eb4becf92df7.tar.bz2
skyhanni-698ebfb1a5673e52f97c681d41a1eb4becf92df7.zip
+ Changed Slayer Profit Tracker
+ Option to change price between npc/instant sell and sell offer + Save data in config + Added option to hide an item from the display + Showing the profit per boss = Different tiers of same slayer type no longer gets merged together
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/PriceSource.kt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/PriceSource.kt b/src/main/java/at/hannibal2/skyhanni/test/PriceSource.kt
new file mode 100644
index 000000000..684440ba1
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/test/PriceSource.kt
@@ -0,0 +1,8 @@
+package at.hannibal2.skyhanni.test
+
+enum class PriceSource(val displayName: String) {
+ BAZAAR_INSTANT_SELL("Instant Sell"),
+ BAZAAR_SELL_OFFER("Sell Offer"),
+ NPC("Npc Price"),
+ ;
+} \ No newline at end of file