mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
fixed Bloodlord Of Vaasgoth
This commit is contained in:
parent
679d181e34
commit
0dbf515d71
1 changed files with 2 additions and 5 deletions
|
@ -87,7 +87,7 @@ public class BloodlordOfVaasgoth extends CardImpl<BloodlordOfVaasgoth> {
|
|||
|
||||
class BloodlordOfVaasgothEffect extends ContinuousEffectImpl {
|
||||
|
||||
private static final Ability ability = new BloodthirstAbility(3);
|
||||
private Ability ability = new BloodthirstAbility(3);
|
||||
|
||||
public BloodlordOfVaasgothEffect() {
|
||||
super(Constants.Duration.OneUse, Constants.Layer.AbilityAddingRemovingEffects_6, Constants.SubLayer.NA, Constants.Outcome.AddAbility);
|
||||
|
@ -109,10 +109,7 @@ 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(bloodthirst);
|
||||
permanent.addAbility(ability);
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue