From ee97ae819770d27772d7525347e0d30f0aa9a5fe Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 10 Dec 2024 08:08:44 -0800 Subject: [PATCH] improve capture trade ship message --- src/core/execution/TradeShipExecution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execution/TradeShipExecution.ts b/src/core/execution/TradeShipExecution.ts index e16ffcd9e..ab30075cf 100644 --- a/src/core/execution/TradeShipExecution.ts +++ b/src/core/execution/TradeShipExecution.ts @@ -72,7 +72,7 @@ export class TradeShipExecution implements Execution { const gold = this.mg.config().tradeShipGold(this.srcPort, dstPort) this.tradeShip.owner().addGold(gold) this.mg.displayMessage( - `Your trade ship captured from ${this.origOwner.displayName()}, giving you ${renderNumber(gold)} gold`, + `Received ${renderNumber(gold)} gold from ship captured from ${this.origOwner.displayName()}`, MessageType.SUCCESS, this.tradeShip.owner().id() )