- Fixed casting a non-instant spell from a Play Effect not working for the human player.

This commit is contained in:
Agetian
2017-06-21 13:07:58 +00:00
parent c9fef205e4
commit 8f2aa095ce
2 changed files with 7 additions and 3 deletions

View File

@@ -63,6 +63,10 @@ public class HumanPlay {
* a {@link forge.game.spellability.SpellAbility} object.
*/
public final static boolean playSpellAbility(final PlayerControllerHuman controller, final Player p, SpellAbility sa) {
return playSpellAbility(controller, p, sa, false);
}
public final static boolean playSpellAbility(final PlayerControllerHuman controller, final Player p, SpellAbility sa, boolean fromPlayEffect) {
FThreads.assertExecutedByEdt(false);
if (sa == controller.getGame().PLAY_LAND_SURROGATE) {
@@ -82,8 +86,8 @@ public class HumanPlay {
return false;
}
// extra play check
if (!sa.canPlay()) {
// extra play check (unless the card is cast from a play effect)
if (!(fromPlayEffect || sa.canPlay())) {
return false;
}

View File

@@ -1506,7 +1506,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont
@Override
public boolean playSaFromPlayEffect(final SpellAbility tgtSA) {
return HumanPlay.playSpellAbility(this, player, tgtSA);
return HumanPlay.playSpellAbility(this, player, tgtSA, true);
}
@Override