Fix Shuriken giving control to wrong player

This commit is contained in:
Steven Knipe 2025-08-08 18:57:27 -07:00
parent 925a820f09
commit 26adccdfd5

View file

@ -84,7 +84,7 @@ class ShurikenEffect extends OneShotEffect {
return true; return true;
} }
game.addEffect(new GainControlTargetEffect( game.addEffect(new GainControlTargetEffect(
Duration.Custom, true, attached.getControllerId() Duration.Custom, true, targetedPermanent.getControllerId()
).setTargetPointer(new FixedTarget(equipment, game)), source); ).setTargetPointer(new FixedTarget(equipment, game)), source);
return true; return true;
} }