fixed Macabre Mockery and Puppeteer Clique issue

This commit is contained in:
Evan Kranzler 2019-01-10 21:39:42 -05:00
parent 47625bc84e
commit 3a44c8e7f3
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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);