- Fixed a rare bug in knownOriginCanPlayAI (Norin the Wary bug).

This commit is contained in:
Sloth
2014-09-20 12:27:34 +00:00
parent 3eefce7176
commit c5a44c9b04

View File

@@ -542,7 +542,7 @@ public class ChangeZoneAi extends SpellAbilityAi {
final Cost abCost = sa.getPayCosts(); final Cost abCost = sa.getPayCosts();
final Card source = sa.getHostCard(); final Card source = sa.getHostCard();
final ZoneType origin = ZoneType.smartValueOf(sa.getParam("Origin")); final ZoneType origin = ZoneType.listValueOf(sa.getParam("Origin")).get(0);
final ZoneType destination = ZoneType.smartValueOf(sa.getParam("Destination")); final ZoneType destination = ZoneType.smartValueOf(sa.getParam("Destination"));
if (abCost != null) { if (abCost != null) {