aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorWalker Selby <git@walkerselby.com>2023-11-05 21:44:19 +0000
committerGitHub <noreply@github.com>2023-11-05 22:44:19 +0100
commit71a4c42c95902b09f6e0e7f638d82cfc896856c9 (patch)
tree55a649a862cc71b9dfe2ec8570901b9142f2b955 /src/main
parentf6f7f645e40ac2dcad944f4c833a3eee0297364e (diff)
downloadskyhanni-71a4c42c95902b09f6e0e7f638d82cfc896856c9.tar.gz
skyhanni-71a4c42c95902b09f6e0e7f638d82cfc896856c9.tar.bz2
skyhanni-71a4c42c95902b09f6e0e7f638d82cfc896856c9.zip
Fix typo (Peace not Piece) (#688)
Fixed typo in The Art Of Peace. #688
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValueCalculator.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValueCalculator.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValueCalculator.kt
index 40d274632..7d8f3c010 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValueCalculator.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValueCalculator.kt
@@ -68,7 +68,7 @@ object EstimatedItemValueCalculator {
// once
totalPrice += addRecomb(stack, list)
totalPrice += addArtOfWar(stack, list)
- totalPrice += addArtOfPiece(stack, list)
+ totalPrice += addArtOfPeace(stack, list)
totalPrice += addEtherwarp(stack, list)
totalPrice += addPowerScrolls(stack, list)
totalPrice += addWoodSingularity(stack, list)
@@ -273,11 +273,11 @@ object EstimatedItemValueCalculator {
}
// TODO untested
- private fun addArtOfPiece(stack: ItemStack, list: MutableList<String>): Double {
+ private fun addArtOfPeace(stack: ItemStack, list: MutableList<String>): Double {
if (!stack.hasArtOfPeace()) return 0.0
val price = "THE_ART_OF_PEACE".asInternalName().getPrice()
- list.add("§7The Art Of Piece: §a§l✔ §7(§6" + NumberUtil.format(price) + "§7)")
+ list.add("§7The Art Of Peace: §a§l✔ §7(§6" + NumberUtil.format(price) + "§7)")
return price
}