mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-11 16:26:22 +00:00
Fix not being able to freely divide combat damage to attackers (#8961)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user