* Illusionist's Gambit - Fixed that the effect prevented that the creatures removed from attacking could also not attack other players, block or use activated abilities.

This commit is contained in:
LevelX2 2014-08-24 06:52:54 +02:00
parent f57828a77b
commit a6fa4405fd

View file

@ -236,11 +236,6 @@ class IllusionistsGambitRestrictionEffect extends RestrictionEffect {
return false;
}
@Override
public boolean canAttack(Game game) {
return false;
}
@Override
public boolean canAttack(UUID defenderId, Ability source, Game game) {
if (defenderId.equals(source.getControllerId()) ) {
@ -255,16 +250,6 @@ class IllusionistsGambitRestrictionEffect extends RestrictionEffect {
return true;
}
@Override
public boolean canBlock(Permanent attacker, Permanent blocker, Ability source, Game game) {
return false;
}
@Override
public boolean canUseActivatedAbilities(Permanent permanent, Ability source, Game game) {
return false;
}
@Override
public IllusionistsGambitRestrictionEffect copy() {
return new IllusionistsGambitRestrictionEffect(this);