mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* 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:
parent
f57828a77b
commit
a6fa4405fd
1 changed files with 0 additions and 15 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue