forked from External/mage
update simulators
This commit is contained in:
parent
5a1b40a42f
commit
51dcaa1725
4 changed files with 31 additions and 20 deletions
|
|
@ -2434,7 +2434,7 @@ public class ComputerPlayer extends PlayerImpl implements Player {
|
|||
|
||||
simulations = new TreeNode<>(combat);
|
||||
addBlockSimulations(blockers, simulations, game);
|
||||
combat.simulate();
|
||||
combat.simulate(game);
|
||||
|
||||
return getWorstSimulation(simulations);
|
||||
|
||||
|
|
@ -2452,7 +2452,7 @@ public class ComputerPlayer extends PlayerImpl implements Player {
|
|||
TreeNode<CombatSimulator> child = new TreeNode<>(combat);
|
||||
node.addChild(child);
|
||||
addBlockSimulations(subList, child, game);
|
||||
combat.simulate();
|
||||
combat.simulate(game);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue