Fixing Discard from play effect to also allow discarding attached cards.

This commit is contained in:
marcins78@gmail.com
2011-09-03 14:54:40 +00:00
parent 274385ef00
commit cb978dad69

View File

@@ -18,7 +18,7 @@ public class DiscardCardFromPlayEffect extends UnrespondableEffect {
@Override
public boolean canPlayEffect(LotroGame game) {
Zone zone = _card.getZone();
return zone == Zone.FREE_CHARACTERS || zone == Zone.FREE_SUPPORT || zone == Zone.SHADOW_CHARACTERS || zone == Zone.SHADOW_SUPPORT;
return zone == Zone.FREE_CHARACTERS || zone == Zone.FREE_SUPPORT || zone == Zone.SHADOW_CHARACTERS || zone == Zone.SHADOW_SUPPORT || zone == Zone.ATTACHED;
}
@Override