1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

Combat NPE fix for mad ai

This commit is contained in:
magenoxx 2012-06-17 13:12:36 +04:00
parent 0a12e0af7e
commit 77ecea1253

View file

@ -186,7 +186,8 @@ public class CombatUtil {
List<Permanent> blockers = new ArrayList<Permanent>();
for (Permanent blocker : possibleBlockers) {
SurviveInfo info = willItSurvive(game, attackerId, defenderId, attacker, blocker);
if (info.isAttackerDied() && !info.isBlockerDied()) {
//if (info.isAttackerDied() && !info.isBlockerDied()) {
if (info.isAttackerDied()) {
blockers.add(blocker);
}
}
@ -200,6 +201,10 @@ public class CombatUtil {
combat.setAttacker(attackingPlayerId);
combat.setDefenders(sim);
if (blocker == null || attacker == null || sim.getPlayer(defendingPlayerId) == null) {
return null;
}
sim.getPlayer(defendingPlayerId).declareBlocker(blocker.getId(), attacker.getId(), sim);
sim.fireEvent(GameEvent.getEvent(GameEvent.EventType.DECLARED_BLOCKERS, defendingPlayerId, defendingPlayerId));