fixed an error

This commit is contained in:
Evan Kranzler 2020-04-11 22:14:24 -04:00
parent 9c1bd767b3
commit 395ae9ec11

View file

@ -26,7 +26,7 @@ public class DamageTargetEffect extends OneShotEffect {
protected boolean useOnlyTargetPointer;
protected String sourceName = "{source}";
public \DamageTargetEffect(int amount) {
public DamageTargetEffect(int amount) {
this(StaticValue.get(amount), true);
}