mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix Precursor Golem (#7924)
This commit is contained in:
parent
65b40bfb53
commit
83af7359b2
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class PrecursorGolemCopySpellEffect extends CopySpellForEachItCouldTargetEffect
|
|||
|
||||
@Override
|
||||
protected List<MageObjectReferencePredicate> getPossibleTargets(StackObject stackObject, Player player, Ability source, Game game) {
|
||||
Permanent permanent = (Permanent) getValue("targetedGolem");
|
||||
Permanent permanent = game.getPermanent((UUID) getValue("targetedGolem"));
|
||||
return game.getBattlefield()
|
||||
.getActivePermanents(
|
||||
filter, player.getId(), source.getSourceId(), game
|
||||
|
|
Loading…
Reference in a new issue