* Infernal Scarring - Fixed that the "Dies" trigger did not work if the enchanted creature was sacrificed (e.g. using Nantuko Husk).

This commit is contained in:
LevelX2 2015-09-12 20:14:44 +02:00
parent 0ca991c4ba
commit 88c18bcd8c
2 changed files with 72 additions and 1 deletions

View file

@ -113,7 +113,7 @@ public class GainAbilityAttachedEffect extends ContinuousEffectImpl {
} else {
Permanent equipment = game.getPermanent(source.getSourceId());
if (equipment != null && equipment.getAttachedTo() != null) {
permanent = game.getPermanent(equipment.getAttachedTo());
permanent = game.getPermanentOrLKIBattlefield(equipment.getAttachedTo());
}
}
if (permanent != null) {