* Xenagos, God of Revels - Fixed that it gave the toughness to the toughness instead of the power.

This commit is contained in:
LevelX2 2014-02-04 23:12:04 +01:00
parent a1dc4ec5b3
commit f85c28b70a

View file

@ -123,7 +123,7 @@ class XenagosGodOfRevelsEffect extends OneShotEffect<XenagosGodOfRevelsEffect> {
public boolean apply(Game game, Ability source) {
Permanent targetCreature = game.getPermanent(getTargetPointer().getFirst(game, source));
if (targetCreature != null) {
ContinuousEffect effect = new BoostTargetEffect(targetCreature.getPower().getValue(), targetCreature.getToughness().getValue(), Duration.EndOfTurn);
ContinuousEffect effect = new BoostTargetEffect(targetCreature.getPower().getValue(), targetCreature.getPower().getValue(), Duration.EndOfTurn);
effect.setTargetPointer(this.getTargetPointer());
game.addEffect(effect, source);
}