(check_trade): Fix the price quoted to the buyer when he deal falls

through because he can't afford it.
This commit is contained in:
Markus Armbruster 2007-12-08 09:11:11 +00:00
parent c96761ecee
commit 30458959e6

View file

@ -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;
}