mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
- little additional fix
This commit is contained in:
parent
6923d4b812
commit
b73f10a0ab
1 changed files with 2 additions and 1 deletions
|
@ -88,7 +88,8 @@ class GlamerSpinnersEffect extends OneShotEffect {
|
|||
Permanent targetPermanent = game.getPermanent(getTargetPointer().getFirst(game, source));
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
Permanent glamerSpinners = game.getPermanent(source.getSourceId());
|
||||
if (controller != null
|
||||
if (targetPermanent != null
|
||||
&& controller != null
|
||||
&& glamerSpinners != null) {
|
||||
boolean passed = true;
|
||||
FilterPermanent filterChoice = new FilterPermanent("a different permanent with the same controller as the target to attach the enchantments to");
|
||||
|
|
Loading…
Reference in a new issue