returned back ability.copy(). Otherwise it wouldn't work.

This commit is contained in:
magenoxx 2011-08-21 00:09:47 +04:00
parent b8076aa1d3
commit 2cc3cf3407

View file

@ -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;
}