Implemented Creeping Chill

This commit is contained in:
Evan Kranzler 2018-09-14 18:02:57 -04:00
parent 34e40febb8
commit ba8b2a609a
3 changed files with 77 additions and 1 deletions

View file

@ -54,8 +54,9 @@ public class DoIfCostPaid extends OneShotEffect {
this.optional = effect.optional;
}
public void addEffect(Effect effect) {
public DoIfCostPaid addEffect(Effect effect) {
executingEffects.add(effect);
return this;
}
@Override