- Added AI logic AlwaysConfirm to AF Dig for some unusual complex cards (e.g. Quest for Ula's Temple)

This commit is contained in:
Agetian
2017-05-19 15:15:43 +00:00
parent e3027dc234
commit c5b493d45e

View File

@@ -142,6 +142,8 @@ public class DigAi extends SpellAbilityAi {
// for Explorer's Scope, always put a land on the battlefield tapped // for Explorer's Scope, always put a land on the battlefield tapped
// (TODO: might not always be a good idea, e.g. when a land ETBing can have detrimental effects) // (TODO: might not always be a good idea, e.g. when a land ETBing can have detrimental effects)
return true; return true;
} else if ("AlwaysConfirm".equals(sa.getParam("AILogic"))) {
return true;
} }
} }