fix Garruk Relentless infinite transform, only perform transform action if permanent is valid (still on the battlefield)

master
melvinzhang 2015-08-15 17:36:55 +08:00
parent 8da7efe02c
commit 326721a299
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ public class TransformAction extends MagicAction {
@Override
public void doAction(final MagicGame game) {
if (permanent.isDoubleFaced()) {
if (permanent.isValid() && permanent.isDoubleFaced()) {
oldStatics = permanent.getStatics();
if (permanent.isTransformed()) {