prevent damage by constructor cleanup

This commit is contained in:
xenohedron 2024-01-21 20:22:11 -05:00
parent 4c0f497fd3
commit 68dcfde204
9 changed files with 13 additions and 27 deletions

View file

@ -15,14 +15,6 @@ import mage.target.TargetSpell;
*/
public class PreventDamageByTargetEffect extends PreventionEffectImpl {
public PreventDamageByTargetEffect(Duration duration) {
this(duration, false);
}
public PreventDamageByTargetEffect(Duration duration, int amount) {
this(duration, amount, false);
}
public PreventDamageByTargetEffect(Duration duration, boolean onlyCombat) {
this(duration, Integer.MAX_VALUE, onlyCombat);
}