forked from External/mage
fixed stolen spells being uncastable when returned to their owner's hand
fixes #4048, #3753, #3697, #2721, #2713, and probably more
This commit is contained in:
parent
c29787323a
commit
84c95b13ab
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ public class SpellAbility extends ActivatedAbilityImpl {
|
|||
}
|
||||
// fix for Gitaxian Probe and casting opponent's spells
|
||||
if (!game.getContinuousEffects().asThough(getSourceId(), AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, playerId, game)
|
||||
&& !controllerId.equals(playerId)) {
|
||||
&& !controllerId.equals(playerId) && getZone() != Zone.HAND) {
|
||||
return false;
|
||||
}
|
||||
// Check if rule modifying events prevent to cast the spell in check playable mode
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue