Update VStack.java

This commit is contained in:
Anthony Calosa
2021-08-09 11:47:08 +00:00
parent 6ca9f1b195
commit 4986b31a50

View File

@@ -419,6 +419,7 @@ public class VStack extends FDropDown {
newtext = TextUtil.fastReplace(TextUtil.fastReplace(newtext, " and .", ".")," .", "."); newtext = TextUtil.fastReplace(TextUtil.fastReplace(newtext, " and .", ".")," .", ".");
newtext = TextUtil.fastReplace(TextUtil.fastReplace(newtext, "- - ", "- "), ". .", "."); newtext = TextUtil.fastReplace(TextUtil.fastReplace(newtext, "- - ", "- "), ". .", ".");
newtext = TextUtil.fastReplace(newtext, "CARDNAME", name); newtext = TextUtil.fastReplace(newtext, "CARDNAME", name);
newtext = TextUtil.fastReplace(newtext, name+name, name);
textRenderer.drawText(g, name+" "+cId + optionalCostString +newtext, FONT, foreColor, x, y, w, h, y, h, true, Align.left, true); textRenderer.drawText(g, name+" "+cId + optionalCostString +newtext, FONT, foreColor, x, y, w, h, y, h, true, Align.left, true);
} }
} }