forked from External/mage
fix 514.3a, give player priority on cleanup when something happened (#12115)
This commit is contained in:
parent
f1791a3c70
commit
72a2e32d1c
4 changed files with 106 additions and 7 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue