mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Minor revert
This commit is contained in:
parent
17800b6df1
commit
1f5e2f1bed
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,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