Missed diff

This commit is contained in:
Trent Hensler 2018-02-10 16:04:05 -08:00
parent 47f0bf1ce5
commit 3c4168a1dd
1 changed files with 3 additions and 3 deletions

View File

@ -335,7 +335,7 @@ public abstract class MemoryBoard extends Board {
for (String raw : show) {
// Hack to get rid of the extra underscores in title normally used to center tag
if(raw.contains("{header}")) {
if (raw.contains("{header}")) {
raw = raw.replace("{header}", faction.getTag(to));
}
@ -347,8 +347,8 @@ public abstract class MemoryBoard extends Board {
if (TagUtil.hasFancy(parsed)) {
List<FancyMessage> fancy = TagUtil.parseFancy(faction, to, parsed);
if (fancy != null) {
for(FancyMessage msg : fancy) {
ret.add((P.p.txt.parse(msg.toOldMessageFormat())));
for (FancyMessage msg : fancy) {
ret.add((P.p.txt.parse(msg.toOldMessageFormat())));
}
}
continue;