mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[NEC] fixed Smoke Spirits' Aid tokens attaching all to the same creature (fixes #8852)
This commit is contained in:
parent
e311ed8377
commit
79d52f28e3
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class SmokeSpiritsAidEffect extends OneShotEffect {
|
||||||
if (aura == null) {
|
if (aura == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
aura.getAbilities().get(0).getTargets().get(0).add(source.getFirstTarget(), game);
|
aura.getAbilities().get(0).getTargets().get(0).add(targetId, game);
|
||||||
aura.getAbilities().get(0).getEffects().get(0).apply(game, aura.getAbilities().get(0));
|
aura.getAbilities().get(0).getEffects().get(0).apply(game, aura.getAbilities().get(0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue