mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Reverted accidental change
This commit is contained in:
parent
836a2f8fac
commit
58fde7db50
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ public class CombatGroup implements Serializable, Copyable<CombatGroup> {
|
|||
Map<UUID, Integer> assigned = new HashMap<>();
|
||||
if (blocked) {
|
||||
boolean excessDamageToDefender = true;
|
||||
for (UUID blockerId : blockerOrder) {
|
||||
for (UUID blockerId : new ArrayList<>(blockerOrder)) { // prevent ConcurrentModificationException
|
||||
Permanent blocker = game.getPermanent(blockerId);
|
||||
if (blocker != null) {
|
||||
int lethalDamage;
|
||||
|
|
Loading…
Reference in a new issue