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

[NEO] fixed Bronze Cudgels not boosting equipped creature (fixes )

This commit is contained in:
Evan Kranzler 2022-04-21 19:41:01 -04:00
parent 613720ad46
commit 3b38ef2393

View file

@ -76,7 +76,7 @@ class BronzeCudgelsEffect extends OneShotEffect {
return false;
}
game.addEffect(new BoostTargetEffect(resolvedCount, 0)
.setTargetPointer(new FixedTarget(permanent.getOwnerId(), game)), source);
.setTargetPointer(new FixedTarget(permanent.getAttachedTo(), game)), source);
return true;
}
}