- CheckStyle.

This commit is contained in:
Chris
2012-11-13 13:37:13 +00:00
parent d437e59091
commit fe7e1d3f5d

View File

@@ -13,8 +13,8 @@ import forge.card.spellability.Target;
import forge.game.player.Player;
import forge.util.MyRandom;
public class FightAi extends SpellAiLogic {
public class FightAi extends SpellAiLogic {
/* (non-Javadoc)
* @see forge.card.abilityfactory.SpellAiLogic#canPlayAI(forge.game.player.Player, java.util.Map, forge.card.spellability.SpellAbility)
*/
@@ -65,7 +65,7 @@ public class FightAi extends SpellAiLogic {
if (creature1.equals(creature2)) {
continue;
}
if (sa.hasParam("TargetsWithoutSameCreatureType")
if (sa.hasParam("TargetsWithoutSameCreatureType")
&& creature1.sharesCreatureTypeWith(creature2)) {
continue;
}
@@ -96,4 +96,4 @@ public class FightAi extends SpellAiLogic {
return false;
}
}
}