- Adding Rat Colony to card limit exceptions in several places.

This commit is contained in:
Agetian
2018-04-23 07:31:39 +03:00
parent 30d4bb923b
commit 1522baa97d
4 changed files with 5 additions and 4 deletions

View File

@@ -179,7 +179,7 @@ public abstract class ACEditorBase<TItem extends InventoryItem, TModel extends D
}
private static final List<String> limitExceptions = Arrays.asList(
new String[]{"Relentless Rats", "Shadowborn Apostle"});
new String[]{"Relentless Rats", "Shadowborn Apostle", "Rat Colony"});
/**
* @return pool of additions allowed to deck

View File

@@ -441,7 +441,7 @@ public enum VSubmenuQuestPrefs implements IVSubmenu<CSubmenuQuestPrefs> {
pnlShop.add(new PrefInput(QPref.PLAYSET_BASIC_LAND_SIZE, QuestPreferencesErrType.DIFFICULTY), fieldConstraints + ", wrap");
FLabel infiniteToKeep = new FLabel.Builder().text("Playset Size: Any Number").fontAlign(SwingConstants.RIGHT).build();
infiniteToKeep.setToolTipText("The number of copies of Relentless Rats or Shadowborn Apostles to keep before selling extras.");
infiniteToKeep.setToolTipText("The number of copies of Relentless Rats or other similar cards with no limit to keep before selling extras.");
pnlShop.add(infiniteToKeep, labelConstraints);
pnlShop.add(new PrefInput(QPref.PLAYSET_ANY_NUMBER_SIZE, QuestPreferencesErrType.DIFFICULTY), fieldConstraints + ", wrap");