Added missing cards and fixed the format list formatting.
This commit is contained in:
@@ -348,13 +348,16 @@ public class HallRequestHandler extends LotroServerRequestHandler implements Uri
|
||||
result.append("</li>");
|
||||
result.append("<li>sites from block: " + lotroFormat.getSiteBlock().getHumanReadable() + "</li>");
|
||||
result.append("<li>Ring-bearer skirmish can be cancelled: " + (lotroFormat.canCancelRingBearerSkirmish() ? "yes" : "no") + "</li>");
|
||||
result.append("<li>X-listed: ");
|
||||
appendCards(result, lotroFormat.getBannedCards());
|
||||
result.append("</li>");
|
||||
result.append("<li>R-listed: ");
|
||||
List<String> restrictedCards = lotroFormat.getRestrictedCards();
|
||||
appendCards(result, restrictedCards);
|
||||
result.append("</li>");
|
||||
if (lotroFormat.getBannedCards().size() > 0) {
|
||||
result.append("<li>X-listed (can't be played): ");
|
||||
appendCards(result, lotroFormat.getBannedCards());
|
||||
result.append("</li>");
|
||||
}
|
||||
if (lotroFormat.getRestrictedCards().size() > 0) {
|
||||
result.append("<li>R-listed (can play just one copy): ");
|
||||
appendCards(result, lotroFormat.getRestrictedCards());
|
||||
result.append("</li>");
|
||||
}
|
||||
if (lotroFormat.getLimit2Cards().size() > 0) {
|
||||
result.append("<li>Limited to 2 in deck: ");
|
||||
List<String> limit2Cards = lotroFormat.getLimit2Cards();
|
||||
|
||||
@@ -11,7 +11,10 @@
|
||||
31S11
|
||||
31S12
|
||||
31S13
|
||||
31S14
|
||||
31S15
|
||||
31S16
|
||||
31S17
|
||||
31S18
|
||||
31S19
|
||||
31S20
|
||||
@@ -23,6 +26,7 @@
|
||||
31S26
|
||||
31S27
|
||||
31S28
|
||||
31S29
|
||||
31S30
|
||||
31S31
|
||||
31S32
|
||||
@@ -30,17 +34,26 @@
|
||||
31S34
|
||||
31S35
|
||||
31S36
|
||||
31S37
|
||||
31S38
|
||||
31S39
|
||||
31S40
|
||||
31S41
|
||||
31S42
|
||||
31S43
|
||||
31S44
|
||||
31S45
|
||||
31S46
|
||||
31S47
|
||||
31S48
|
||||
31S49
|
||||
31S50
|
||||
31S51
|
||||
31S52
|
||||
31S53
|
||||
31S54
|
||||
31S55
|
||||
31S56
|
||||
31S57
|
||||
31S58
|
||||
31S59
|
||||
|
||||
Reference in New Issue
Block a user