mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-12 16:58:57 +00:00
LandAbility: skip if already in Battlefield
This commit is contained in:
@@ -54,7 +54,7 @@ public class LandAbility extends AbilityStatic {
|
||||
public boolean canPlay() {
|
||||
Card land = this.getHostCard();
|
||||
final Player p = this.getActivatingPlayer();
|
||||
if (p == null) {
|
||||
if (p == null || land.isInZone(ZoneType.Battlefield)) {
|
||||
return false;
|
||||
}
|
||||
if (this.getCardState() != null && land.getCurrentStateName() != this.getCardStateName()) {
|
||||
|
||||
Reference in New Issue
Block a user