mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Mistbind Clique - Fixed that you could still tap target players lands if you had to sacrifice Mistbind Clique because you could not champion another Faerie.
This commit is contained in:
parent
61746dc98f
commit
651dab4274
1 changed files with 4 additions and 3 deletions
|
@ -68,7 +68,6 @@ public class MistbindClique extends CardImpl {
|
|||
// When a Faerie is championed with Mistbind Clique, tap all lands target player controls.
|
||||
this.addAbility(new MistbindCliqueAbility());
|
||||
|
||||
|
||||
}
|
||||
|
||||
public MistbindClique(final MistbindClique card) {
|
||||
|
@ -105,8 +104,10 @@ class MistbindCliqueAbility extends ZoneChangeTriggeredAbility {
|
|||
|
||||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
if (event.getSourceId() != null && event.getSourceId().equals(getSourceId())) {
|
||||
ZoneChangeEvent zEvent = (ZoneChangeEvent)event;
|
||||
if (event.getSourceId() != null
|
||||
&& event.getSourceId().equals(getSourceId())
|
||||
&& !event.getSourceId().equals(event.getTargetId())) {
|
||||
ZoneChangeEvent zEvent = (ZoneChangeEvent) event;
|
||||
if (zEvent.getTarget() != null && zEvent.getTarget().hasSubtype("Faerie")) {
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue