fixed card name

This commit is contained in:
Seravy
2018-02-15 11:25:08 +01:00
parent 887f2f9a52
commit c47242e40e

View File

@@ -37,7 +37,7 @@ public class DestroyAi extends SpellAbilityAi {
boolean havepact = false; boolean havepact = false;
for (Card cardInPlay : ai.getGame().getCardsIn(ZoneType.Battlefield)) { for (Card cardInPlay : ai.getGame().getCardsIn(ZoneType.Battlefield)) {
if ((cardInPlay.getController().equals(ai)) if ((cardInPlay.getController().equals(ai))
&& ("Grave_Pact".equals(cardInPlay.getName()))) { && ("Grave Pact".equals(cardInPlay.getName()))) {
havepact = true; havepact = true;
} }
} }