spjspj - Update SourceHasRemainedInSameZoneCondition with new constructor that passes in game

This commit is contained in:
spjspj 2016-04-22 08:32:09 +10:00
parent 109506ad63
commit 8c912851dd

View file

@ -49,6 +49,14 @@ public class SourceHasRemainedInSameZoneCondition implements Condition {
this.timesChangedZones = -1;
}
public SourceHasRemainedInSameZoneCondition(UUID idToCheck, Game game) {
this.idToCheck = idToCheck;
this.timesChangedZones = -1;
if (this.idToCheck != null && game != null && game.getCard(this.idToCheck) != null) {
this.timesChangedZones = game.getState().getZoneChangeCounter(this.idToCheck);
}
}
public SourceHasRemainedInSameZoneCondition getInstance(UUID cardId) {
return new SourceHasRemainedInSameZoneCondition(cardId);
}