Actual fix for Daredevil Dragster

This commit is contained in:
Sol
2017-03-28 02:48:46 +00:00
parent 84b06ef2d3
commit 3e05b2b520
2 changed files with 4 additions and 2 deletions

View File

@@ -437,7 +437,9 @@ public class PhaseHandler implements java.io.Serializable {
eventEndCombat = new GameEventCombatEnded(attackers, blockers);
}
endCombat();
playerTurn.resetAttackedThisCombat();
for(Player player : game.getPlayers()) {
player.resetCombatantsThisCombat();
}
if (eventEndCombat != null) {
game.fireEvent(eventEndCombat);

View File

@@ -2774,7 +2774,7 @@ public class Player extends GameEntity implements Comparable<Player> {
game.setActivePlanes(currentPlanes);
}
public final void resetAttackedThisCombat() {
public final void resetCombatantsThisCombat() {
// resets the status of attacked/blocked this phase
CardCollectionView list = getCardsIn(ZoneType.Battlefield);