fix 514.3a, give player priority on cleanup when something happened (#12115)

This commit is contained in:
Susucre 2024-04-12 15:31:53 +02:00 committed by GitHub
parent f1791a3c70
commit 72a2e32d1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 106 additions and 7 deletions

View file

@ -1,15 +1,15 @@
package mage.game.turn;
import java.io.Serializable;
import java.util.UUID;
import mage.constants.PhaseStep;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.events.GameEvent.EventType;
import mage.util.Copyable;
import java.io.Serializable;
import java.util.UUID;
/**
* Game's step
* <p>
@ -85,4 +85,7 @@ public abstract class Step implements Serializable, Copyable<Step> {
return stepPart;
}
public String toString() {
return type.getStepText();
}
}