From 30458959e6697dc4f2c10f126653c96d24fd915a Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sat, 8 Dec 2007 09:11:11 +0000 Subject: [PATCH] (check_trade): Fix the price quoted to the buyer when he deal falls through because he can't afford it. --- src/lib/commands/trad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/commands/trad.c b/src/lib/commands/trad.c index 182d329a..d55af20a 100644 --- a/src/lib/commands/trad.c +++ b/src/lib/commands/trad.c @@ -358,7 +358,7 @@ check_trade(void) wu(0, trade.trd_maxbidder, "You tried to buy %s #%d from %s for $%.2f\n", trade_nameof(&trade, &tg), saveid, cname(trade.trd_owner), - price * tradetax); + price); wu(0, trade.trd_maxbidder, "but couldn't afford it.\n"); continue; }