- properly construct the reply texts for Strife's merchants.

This commit is contained in:
Christoph Oelckers 2019-03-09 13:34:47 +01:00
parent 29012a89c6
commit 392ba7ed2e
1 changed files with 1 additions and 0 deletions

View File

@ -142,6 +142,7 @@ class ConversationMenu : Menu
let trade = Stringtable.Localize("$TXT_TRADE"); let trade = Stringtable.Localize("$TXT_TRADE");
let amount = String.Format("%u", reply.PrintAmount); let amount = String.Format("%u", reply.PrintAmount);
trade.Replace("%u", amount); trade.Replace("%u", amount);
ReplyText = ReplyText .. trade;
} }
let ReplyLines = SmallFont.BreakLines (ReplyText, ReplyWidth); let ReplyLines = SmallFont.BreakLines (ReplyText, ReplyWidth);