removed code that dealt with shadow ability from canBeBlocked method. fixes issue 137

master
beholder 2012-01-08 14:00:21 +01:00
parent 668cfb8f84
commit 9332a13992
1 changed files with 0 additions and 6 deletions

View File

@ -731,12 +731,6 @@ public class MagicPermanent implements MagicSource,MagicTarget,Comparable<MagicP
return false;
}
}
// Shadow
if (MagicAbility.Shadow.hasAbility(flags) &&
!player.controlsPermanentWithAbility(MagicAbility.Shadow,game)) {
return false;
}
return true;
}