Some minor fixes and improvements.

This commit is contained in:
LevelX2 2013-10-02 14:27:00 +02:00
parent d97ecc4ec0
commit a98683fc18
4 changed files with 20 additions and 5 deletions

View file

@ -115,7 +115,7 @@ class BloodlordOfVaasgothEffect extends ContinuousEffectImpl {
if (object != null) {
Permanent permanent = game.getPermanent(object.getSourceId());
if (permanent != null) {
permanent.addAbility(ability, game);
permanent.addAbility(ability, source.getSourceId(), game);
return true;
}
} else {

View file

@ -140,6 +140,7 @@ class XenagosManaEffect extends OneShotEffect <XenagosManaEffect> {
}
player.getManaPool().addMana(mana, game, source);
}
return true;
}
return false;
}