mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
returned back ability.copy(). Otherwise it wouldn't work.
This commit is contained in:
parent
b8076aa1d3
commit
2cc3cf3407
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue