mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08: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…
Add table
Add a link
Reference in a new issue