From 793f6245f02423d0e90514bb12a1df82ee19968d Mon Sep 17 00:00:00 2001 From: "wrenczes@gmail.com" Date: Sat, 4 Dec 2010 08:36:10 +0000 Subject: [PATCH] Reinstated the call to setExtraCostsAction() in reactToClick, as removing it breaks Basal Sliver (when sacrificing another sliver, it would kill off Basal Sliver instead of the other sliver that inherited the ability). --- projects/mtg/src/MTGAbility.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index 2177992d3..40b386dfc 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -3677,6 +3677,7 @@ int AManaProducer::reactToClick(MTGCardInstance * _card) return 0; if (cost) { + cost->setExtraCostsAction(this, _card); if (!cost->isExtraPaymentSet()) { GameObserver::GetInstance()->waitForExtraPayment = cost->extraCosts;