fix: bazaar buy/sell order tooltip text swapped

This commit is contained in:
Raghav
2025-08-06 18:48:51 +05:30
committed by Linnea Gräf
parent 3fe5ec7233
commit 6bd39eb81f

View File

@@ -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
)
)