[NEO] fixed Light-Paws, Emperor's Voice aura not attaching correctly (fixes #8695)

This commit is contained in:
Evan Kranzler 2022-02-15 21:05:08 -05:00
parent cef356cfd1
commit 0f48e08ec5

View file

@ -127,7 +127,7 @@ class LightPawsEmperorsVoiceEffect extends OneShotEffect {
&& new AuraCardCanAttachToPermanentId(permanent.getId()).apply(card, game)) {
game.getState().setValue("attachTo:" + card.getId(), permanent);
player.moveCards(card, Zone.BATTLEFIELD, source, game);
player.addAttachment(aura.getId(), source, game);
permanent.addAttachment(card.getId(), source, game);
}
player.shuffleLibrary(source, game);
return true;