* Marisi, Breaker of the Coil - Fixed can't cast ability.

This commit is contained in:
LevelX2 2020-01-10 21:11:22 +01:00
parent ffc5f33cd0
commit d3a925d2c9
2 changed files with 8 additions and 8 deletions

View file

@ -28,6 +28,7 @@ public enum Outcome {
PutManaInPool(true),
Regenerate(true),
PreventDamage(true),
PreventCast(false),
RedirectDamage(true),
Tap(false),
Transform(true),
@ -40,6 +41,7 @@ public enum Outcome {
Removal(false),
AIDontUseIt(false),
Vote(true);
private final boolean good; // good or bad effect for targeting player (for AI usage)
private boolean canTargetAll;