mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[NEO] fixed Invoke the Ancients only creating a single token (fixes #8682)
This commit is contained in:
parent
f8f84ae0ca
commit
bf586c5ff2
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ class InvokeTheAncientsEffect extends OneShotEffect {
|
|||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
token.putOntoBattlefield(1, game, source, source.getControllerId());
|
||||
token.putOntoBattlefield(2, game, source, source.getControllerId());
|
||||
for (UUID tokenId : token.getLastAddedTokenIds()) {
|
||||
Permanent permanent = game.getPermanent(tokenId);
|
||||
if (permanent == null) {
|
||||
|
|
Loading…
Reference in a new issue