consolidate batch event constructor (related to 7c3bbed8)

This commit is contained in:
xenohedron 2024-05-02 01:28:06 -04:00
parent f482eef06a
commit 30d498b80f
9 changed files with 13 additions and 19 deletions

View file

@ -6,6 +6,6 @@ package mage.game.events;
public class DamagedBatchForPermanentsEvent extends BatchEvent<DamagedPermanentEvent> {
public DamagedBatchForPermanentsEvent(DamagedPermanentEvent firstEvent) {
super(EventType.DAMAGED_BATCH_FOR_PERMANENTS, false, false, firstEvent);
super(EventType.DAMAGED_BATCH_FOR_PERMANENTS, false, false, false, firstEvent);
}
}