aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghav <71544502+Raghav314@users.noreply.github.com>2025-08-06 18:48:51 +0530
committerLinnea Gräf <nea@nea.moe>2025-08-12 01:22:33 +0200
commit6bd39eb81fb35b4dbd3107955a076ccacc70ee23 (patch)
treef3a0ce42ddeba4a5504fa696f777fc1969d0f40b
parent3fe5ec7233fcfaa6884c7676fd720f3a3600cd58 (diff)
downloadFirmament-6bd39eb81fb35b4dbd3107955a076ccacc70ee23.tar.gz
Firmament-6bd39eb81fb35b4dbd3107955a076ccacc70ee23.tar.bz2
Firmament-6bd39eb81fb35b4dbd3107955a076ccacc70ee23.zip
fix: bazaar buy/sell order tooltip text swapped
-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
)
)