diff --git a/Mage.Sets/src/mage/sets/magic2012/BloodlordOfVaasgoth.java b/Mage.Sets/src/mage/sets/magic2012/BloodlordOfVaasgoth.java index fd0da2a5a11..c4d55f4367f 100644 --- a/Mage.Sets/src/mage/sets/magic2012/BloodlordOfVaasgoth.java +++ b/Mage.Sets/src/mage/sets/magic2012/BloodlordOfVaasgoth.java @@ -109,6 +109,9 @@ class BloodlordOfVaasgothEffect extends ContinuousEffectImpl { if (object != null) { Permanent permanent = game.getPermanent(object.getSourceId()); if (permanent != null) { + Ability bloodthirst = ability.copy(); + bloodthirst.newId(); + bloodthirst.setSourceId(source.getSourceId()); permanent.addAbility(ability); return true; }