[NEO] fixed Invoke the Ancients only creating a single token (fixes #8682)

This commit is contained in:
Evan Kranzler 2022-02-10 17:18:54 -05:00
parent f8f84ae0ca
commit bf586c5ff2

View file

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