replaced StaticValue with singletons

This commit is contained in:
Evan Kranzler 2020-01-05 11:33:21 -05:00
parent 7f0d793544
commit 9a603fbaab
318 changed files with 440 additions and 435 deletions

View file

@ -25,11 +25,11 @@ public class DrawCardTargetEffect extends OneShotEffect {
protected boolean upTo;
public DrawCardTargetEffect(int amount) {
this(new StaticValue(amount));
this(StaticValue.get(amount));
}
public DrawCardTargetEffect(int amount, boolean optional) {
this(new StaticValue(amount), optional);
this(StaticValue.get(amount), optional);
}
public DrawCardTargetEffect(DynamicValue amount) {