- Fixed possible NPE in assignAttackersDamage.

This commit is contained in:
Sloth
2013-06-28 19:47:30 +00:00
parent 4b71ea18b8
commit 1172a542fd

View File

@@ -455,6 +455,9 @@ public class Combat {
}
AttackingBand band = this.getBandOfAttacker(attacker);
if (band == null) {
continue;
}
boolean trampler = attacker.hasKeyword("Trample");
orderedBlockers = this.blockersOrderedForDamageAssignment.get(attacker);