delete unused code from the old PlayerLife type.

This commit is contained in:
jendave
2011-08-06 13:13:07 +00:00
parent 3744cda5f7
commit 229850b4b2
6 changed files with 5 additions and 26 deletions

View File

@@ -5201,12 +5201,12 @@ public class CardFactory_Creatures {
public boolean canPlayAI()
{
return false;
/**
/*
CardList Clist = new CardList(AllZone.getZone(Constant.Zone.Play, AllZone.ComputerPlayer).getCards()).getType("Creature");
CardList Hlist = new CardList(AllZone.getZone(Constant.Zone.Play, AllZone.HumanPlayer).getCards()).getType("Creature");
return((Clist.size() - Hlist.size() * ComputerUtil.getAvailableMana().size() > AllZone.GameAction.getPlayerLife(AllZone.HumanPlayer).getLife())
return((Clist.size() - Hlist.size() * ComputerUtil.getAvailableMana().size() > AllZone.HumanPlayer.getLife())
&& AllZone.Phase.getPhase().equals(Constant.Phase.Main1));
**/
*/
}
};