aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/kotlin/features/inventory/PriceData.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/features/inventory/PriceData.kt b/src/main/kotlin/features/inventory/PriceData.kt
index 92bfc58..241fb43 100644
--- a/src/main/kotlin/features/inventory/PriceData.kt
+++ b/src/main/kotlin/features/inventory/PriceData.kt
@@ -88,13 +88,13 @@ object PriceData : FirmamentFeature {
it.lines.add(multiplierText)
it.lines.add(
formatPrice(
- tr("firmament.tooltip.bazaar.sell-order", "Bazaar Sell Order"),
+ tr("firmament.tooltip.bazaar.buy-order", "Bazaar Buy Order"),
bazaarData.quickStatus.sellPrice * multiplier
)
)
it.lines.add(
formatPrice(
- tr("firmament.tooltip.bazaar.buy-order", "Bazaar Buy Order"),
+ tr("firmament.tooltip.bazaar.sell-order", "Bazaar Sell Order"),
bazaarData.quickStatus.buyPrice * multiplier
)
)