1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

* Goblin Welder - fixed rollback error;

This commit is contained in:
Oleg Agafonov 2021-09-05 18:36:14 +04:00
parent b7f15772e8
commit 107c10fd2c

View file

@ -68,6 +68,9 @@ public final class GoblinWelder extends CardImpl {
@Override
public boolean apply(Game game, Ability source) {
if (getTargetPointer().getTargets(game, source).size() < 2) {
return false;
}
Permanent artifact = game.getPermanent(getTargetPointer().getFirst(game, source));
Card card = game.getCard(getTargetPointer().getTargets(game, source).get(1));
Player controller = game.getPlayer(source.getControllerId());