From 698ebfb1a5673e52f97c681d41a1eb4becf92df7 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 10 Jun 2023 14:33:20 +0200 Subject: + 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 --- src/main/java/at/hannibal2/skyhanni/test/PriceSource.kt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/test/PriceSource.kt (limited to 'src/main/java/at/hannibal2/skyhanni/test') 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 -- cgit