mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- BFZ: Added Conduit of Ruin
This commit is contained in:
@@ -235,8 +235,11 @@ public class ManaCostAdjustment {
|
||||
if (activator == null ) {
|
||||
return;
|
||||
}
|
||||
if (CardLists.filterControlledBy(activator.getGame().getStack().getSpellsCastThisTurn(),
|
||||
activator).size() > 0) {
|
||||
CardCollection list = CardLists.filterControlledBy(activator.getGame().getStack().getSpellsCastThisTurn(), activator);
|
||||
if (params.containsKey("ValidCard")) {
|
||||
list = CardLists.getValidCards(list, params.get("ValidCard"), hostCard.getController(), hostCard);
|
||||
}
|
||||
if (list.size() > 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -380,8 +383,11 @@ public class ManaCostAdjustment {
|
||||
if (activator == null ) {
|
||||
return;
|
||||
}
|
||||
if (CardLists.filterControlledBy(activator.getGame().getStack().getSpellsCastThisTurn(),
|
||||
activator).size() > 0) {
|
||||
CardCollection list = CardLists.filterControlledBy(activator.getGame().getStack().getSpellsCastThisTurn(), activator);
|
||||
if (params.containsKey("ValidCard")) {
|
||||
list = CardLists.getValidCards(list, params.get("ValidCard"), hostCard.getController(), hostCard);
|
||||
}
|
||||
if (list.size() > 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user