From f85c28b70a6a865a94cb3a9498f12c6ca535124e Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 4 Feb 2014 23:12:04 +0100 Subject: [PATCH] * Xenagos, God of Revels - Fixed that it gave the toughness to the toughness instead of the power. --- Mage.Sets/src/mage/sets/bornofthegods/XenagosGodOfRevels.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/bornofthegods/XenagosGodOfRevels.java b/Mage.Sets/src/mage/sets/bornofthegods/XenagosGodOfRevels.java index ac70e31bb3c..ede8618e7f9 100644 --- a/Mage.Sets/src/mage/sets/bornofthegods/XenagosGodOfRevels.java +++ b/Mage.Sets/src/mage/sets/bornofthegods/XenagosGodOfRevels.java @@ -123,7 +123,7 @@ class XenagosGodOfRevelsEffect extends OneShotEffect { 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); }