Genesis Chamber causes that creature's controller (not the controller of Genesis Chamber) to put a Myr onto the battlefield

master
melvin 2012-12-30 18:47:01 +08:00
parent 42ada5dfc0
commit 442bd304b5
1 changed files with 6 additions and 6 deletions

View File

@ -14,15 +14,15 @@ public class Genesis_Chamber {
final MagicGame game,
final MagicPermanent permanent,
final MagicPermanent otherPermanent) {
return (otherPermanent != permanent &&
permanent.isUntapped() &&
return (permanent.isUntapped() &&
otherPermanent.isNonToken() &&
otherPermanent.isCreature()) ?
new MagicEvent(
permanent,
this,
"PN puts a 1/1 colorless Myr artifact creature token onto the battlefield."
):
permanent,
otherPermanent.getController(),
this,
"PN puts a 1/1 colorless Myr artifact creature token onto the battlefield."
):
MagicEvent.NONE;
}