Skip to content

Commit

Permalink
Replaced Npc with NPC (typos) (hannibal002#950)
Browse files Browse the repository at this point in the history
Fixed NPC typos in config. hannibal002#950
  • Loading branch information
Absterge authored Jan 24, 2024
1 parent 4440105 commit fc20817
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ object SackDisplay {

enum class PriceFrom(val displayName: String) {
BAZAAR("Bazaar Price"),
NPC("Npc Price"),
NPC("NPC Price"),
;
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/at/hannibal2/skyhanni/test/PriceSource.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package at.hannibal2.skyhanni.test
enum class PriceSource(val displayName: String) {
BAZAAR_INSTANT_SELL("Instant Sell"),
BAZAAR_SELL_OFFER("Sell Offer"),
NPC("Npc Price"),
NPC("NPC Price"),
;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ class SkyHanniDebugsAndTests {
val internalName = event.itemStack.getInternalNameOrNull() ?: return

val npcPrice = internalName.getNpcPriceOrNull() ?: return
event.toolTip.add("§7Npc price: §6${npcPrice.addSeparators()}")
event.toolTip.add("§7NPC price: §6${npcPrice.addSeparators()}")
}

@SubscribeEvent
Expand Down

0 comments on commit fc20817

Please sign in to comment.