Strago and Relm - fixed wrong casting player (#13803)

---------

Co-authored-by: thorsten <info@thorstenhacke.de>
This commit is contained in:
Thorsten Hacke 2025-06-29 19:07:43 +02:00 committed by GitHub
parent b4519a3361
commit 97be82d3a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;