Fix not being able to freely divide combat damage to attackers (#8961)

This commit is contained in:
tool4ever
2025-10-19 22:50:57 +02:00
committed by GitHub
parent 6f38479190
commit 7367e93140
2 changed files with 2 additions and 2 deletions

View File

@@ -744,7 +744,7 @@ public class Combat {
assigningPlayer = attackingPlayer;
assignedDamage = true;
Map<Card, Integer> map = assigningPlayer.getController().assignCombatDamage(blocker, attackers, null, damage, defender, divideCombatDamageAsChoose || assigningPlayer != blocker.getController());
Map<Card, Integer> map = assigningPlayer.getController().assignCombatDamage(blocker, attackers, null, damage, defender, divideCombatDamageAsChoose || assigningPlayer != blocker.getController() || !this.legacyOrderCombatants);
for (Entry<Card, Integer> dt : map.entrySet()) {
// Butcher Orgg
if (dt.getKey() == null && dt.getValue() > 0) {