mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
can not be singleton
This commit is contained in:
parent
fb9d713287
commit
4361b7412a
1 changed files with 2 additions and 5 deletions
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
package mage.abilities.condition.common;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.condition.Condition;
|
||||
import mage.constants.PhaseStep;
|
||||
|
|
@ -37,6 +36,8 @@ import mage.game.Game;
|
|||
import mage.game.permanent.Permanent;
|
||||
import mage.game.turn.Step;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
|
|
@ -44,15 +45,11 @@ import mage.game.turn.Step;
|
|||
|
||||
public class SourceTappedBeforeUntapStepCondition implements Condition {
|
||||
|
||||
private static final SourceTappedBeforeUntapStepCondition instance = new SourceTappedBeforeUntapStepCondition();
|
||||
UUID permanentId = null;
|
||||
boolean permanentWasTappedBeforeUntapStep = false;
|
||||
int lastTurnNum = -1;
|
||||
|
||||
|
||||
public static SourceTappedBeforeUntapStepCondition getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
public void setPermanentId(UUID permanentId) {
|
||||
this.permanentId = permanentId;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue