Changed PermanentImpl to Permanent

This commit is contained in:
Zzooouhh 2017-12-29 05:31:55 +01:00 committed by GitHub
parent 35ba9dc493
commit 31648dbc0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,6 @@ import mage.game.events.GameEvent;
import mage.game.events.ZoneChangeEvent; import mage.game.events.ZoneChangeEvent;
import mage.game.permanent.Permanent; import mage.game.permanent.Permanent;
import mage.game.permanent.PermanentCard; import mage.game.permanent.PermanentCard;
import mage.game.permanent.PermanentImpl;
import mage.game.stack.StackAbility; import mage.game.stack.StackAbility;
import mage.players.Player; import mage.players.Player;
import mage.target.Target; import mage.target.Target;
@ -99,7 +98,7 @@ public class AuraReplacementEffect extends ReplacementEffectImpl {
// Aura enters the battlefield attached // Aura enters the battlefield attached
Object object = game.getState().getValue("attachTo:" + card.getId()); Object object = game.getState().getValue("attachTo:" + card.getId());
if (object != null) { if (object != null) {
if (object instanceof PermanentImpl) { if (object instanceof Permanent) {
// Aura is attached to a permanent on the battlefield // Aura is attached to a permanent on the battlefield
return false; return false;
} }