mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
- Fixed Phyrexian War Beast computer code.
This commit is contained in:
@@ -17479,7 +17479,18 @@ public class CardFactory_Creatures {
|
||||
PlayerZone play = AllZone.getZone(Constant.Zone.Play,player);
|
||||
CardList choice = new CardList(play.getCards());
|
||||
choice = choice.getType("Land");
|
||||
|
||||
if (choice.size() > 0)
|
||||
{
|
||||
if (player.equals(Constant.Player.Human))
|
||||
AllZone.InputControl.setInput(CardFactoryUtil.input_sacrifice(ability,choice,"Select a land to sacrifice"));
|
||||
else //compy
|
||||
{
|
||||
//AllZone.GameAction.sacrificePermanent(Constant.Player.Computer, ability, choice);
|
||||
ability.setTargetCard(choice.get(0));
|
||||
AllZone.Stack.add(ability);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user