mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
fixed Macabre Mockery and Puppeteer Clique issue
This commit is contained in:
parent
47625bc84e
commit
3a44c8e7f3
2 changed files with 2 additions and 2 deletions
|
|
@ -73,7 +73,7 @@ class MacabreMockeryEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
Permanent permanent = game.getPermanent(card.getId());
|
||||
if (permanent != null) {
|
||||
if (permanent == null) {
|
||||
return false;
|
||||
}
|
||||
ContinuousEffect effect = new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.Custom);
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class PuppeteerCliqueEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
Permanent permanent = game.getPermanent(card.getId());
|
||||
if (permanent != null) {
|
||||
if (permanent == null) {
|
||||
return false;
|
||||
}
|
||||
ContinuousEffect hasteEffect = new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.Custom);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue