mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
Strago and Relm - fixed wrong casting player (#13803)
--------- Co-authored-by: thorsten <info@thorstenhacke.de>
This commit is contained in:
parent
b4519a3361
commit
97be82d3a4
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ class StragoAndRelmEffect extends OneShotEffect {
|
||||||
.map(Controllable::getControllerId)
|
.map(Controllable::getControllerId)
|
||||||
.map(game::getPlayer)
|
.map(game::getPlayer)
|
||||||
.ifPresent(player -> CardUtil.castSpellWithAttributesForFree(
|
.ifPresent(player -> CardUtil.castSpellWithAttributesForFree(
|
||||||
opponent, source, game, new CardsImpl(card),
|
player, source, game, new CardsImpl(card),
|
||||||
StaticFilters.FILTER_CARD, StragoAndRelmTracker.instance
|
StaticFilters.FILTER_CARD, StragoAndRelmTracker.instance
|
||||||
));
|
));
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue