Fixed that amass don't create token is opponent have it;

This commit is contained in:
Oleg Agafonov 2019-04-20 20:15:21 +04:00
parent d0dc6c7731
commit 73f7855e4d

View file

@ -68,7 +68,7 @@ public class AmassEffect extends OneShotEffect {
if (player == null) {
return false;
}
if (!game.getBattlefield().contains(filter, 1, game)) {
if (!game.getBattlefield().contains(filter, source.getControllerId(), 1, game)) {
new CreateTokenEffect(new ZombieArmyToken()).apply(game, source);
}
Target target = new TargetPermanent(filter);