CardTraitBase: add more Desert flags

This commit is contained in:
Hanmac
2017-06-17 23:12:04 +00:00
parent cc3442780f
commit a5069036cd

View File

@@ -220,6 +220,7 @@ public abstract class CardTraitBase extends GameObject implements IHasCardView {
if ("True".equalsIgnoreCase(params.get("Bloodthirst")) && !hostController.hasBloodthirst()) return false;
if ("True".equalsIgnoreCase(params.get("FatefulHour")) && hostController.getLife() > 5) return false;
if ("True".equalsIgnoreCase(params.get("Revolt")) && !hostController.hasRevolt()) return false;
if ("True".equalsIgnoreCase(params.get("Desert")) && !hostController.hasDesert()) return false;
if (params.containsKey("Presence")) {
if (hostCard.getCastFrom() == null || hostCard.getCastSA() == null)