clean all usage of GameEvent::setSourceId

This commit is contained in:
Susucre 2024-04-28 14:21:43 +02:00
parent 8771d9b7f5
commit 868cd4d8fd
40 changed files with 114 additions and 100 deletions

View file

@ -6,7 +6,7 @@ package mage.game.events;
public class TappedBatchEvent extends BatchEvent<TappedEvent> {
public TappedBatchEvent(TappedEvent firstEvent) {
super(EventType.TAPPED_BATCH, false, firstEvent);
super(EventType.TAPPED_BATCH, false, false, firstEvent);
}
}