mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- fixed spacing of Strife's merchant's texts.
This commit is contained in:
parent
cdc109fbc0
commit
9f6b8cd323
1 changed files with 2 additions and 3 deletions
|
@ -141,10 +141,9 @@ class ConversationMenu : Menu
|
|||
let ReplyText = Stringtable.Localize(reply.Reply);
|
||||
if (reply.NeedsGold)
|
||||
{
|
||||
let trade = Stringtable.Localize("$TXT_TRADE");
|
||||
ReplyText.AppendFormat(" %s", Stringtable.Localize("$TXT_TRADE"));
|
||||
let amount = String.Format("%u", reply.PrintAmount);
|
||||
trade.Replace("%u", amount);
|
||||
ReplyText = ReplyText .. trade;
|
||||
ReplyText.Replace("%u", amount);
|
||||
}
|
||||
let ReplyLines = SmallFont.BreakLines (ReplyText, ReplyWidth);
|
||||
|
||||
|
|
Loading…
Reference in a new issue