Implemented Morgue Troll

This commit is contained in:
Evan Kranzler 2018-09-18 11:58:56 -04:00
parent 8792e0b5cf
commit 5cdc14da4c
3 changed files with 81 additions and 1 deletions

View file

@ -27,7 +27,10 @@ public class DoIfCostPaid extends OneShotEffect {
}
public DoIfCostPaid(Effect effect, Effect effect2, Cost cost) {
this(effect, cost, null, true);
this(effect,effect2,cost,true);
}
public DoIfCostPaid(Effect effect, Effect effect2, Cost cost,boolean optional) {
this(effect, cost, null, optional);
this.otherwiseEffects.add(effect2);
}