mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +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);
|
let ReplyText = Stringtable.Localize(reply.Reply);
|
||||||
if (reply.NeedsGold)
|
if (reply.NeedsGold)
|
||||||
{
|
{
|
||||||
let trade = Stringtable.Localize("$TXT_TRADE");
|
ReplyText.AppendFormat(" %s", Stringtable.Localize("$TXT_TRADE"));
|
||||||
let amount = String.Format("%u", reply.PrintAmount);
|
let amount = String.Format("%u", reply.PrintAmount);
|
||||||
trade.Replace("%u", amount);
|
ReplyText.Replace("%u", amount);
|
||||||
ReplyText = ReplyText .. trade;
|
|
||||||
}
|
}
|
||||||
let ReplyLines = SmallFont.BreakLines (ReplyText, ReplyWidth);
|
let ReplyLines = SmallFont.BreakLines (ReplyText, ReplyWidth);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue