- Since all of the cards with "each player sacrifices" have remAIDeck:True, I enabled 1 for 1 (or X for X) trades for special decks.

- Updated the Genghis Khan decks.
This commit is contained in:
jendave
2011-08-06 23:29:19 +00:00
parent b7ec1e731f
commit 6ab4e710eb
4 changed files with 36 additions and 34 deletions

View File

@@ -259,7 +259,8 @@ public class AbilityFactory_Sacrifice {
CardList computerList = AllZoneUtil.getPlayerCardsInPlay(AllZone.ComputerPlayer);
computerList = computerList.getValidCards(valid.split(","), sa.getActivatingPlayer(), sa.getSourceCard());
if(humanList.size() < amount || computerList.size() >= amount ) return false;
//Since all of the cards have remAIDeck:True, I enabled 1 for 1 (or X for X) trades for special decks
if(humanList.size() < amount /*|| computerList.size() >= amount */) return false;
}
}