* Athreos, God of Passage - Fixed that creature went back to hand if life cost was paid instead as if was not paid.

This commit is contained in:
LevelX2 2014-04-19 03:14:53 +02:00
parent cdecd516a2
commit d47bfbdbc1

View file

@ -128,7 +128,7 @@ class AthreosGodOfPassageReturnEffect extends OneShotEffect<AthreosGodOfPassageR
if (opponent != null) {
if (opponent.chooseUse(outcome, new StringBuilder("Pay 3 live to prevent that ").append(creature.getName()).append(" returns to ").append(controller.getName()).append("'s hand?").toString(), game)) {
Cost cost = new PayLifeCost(3);
if (!cost.pay(source, game, source.getSourceId(), opponent.getId(), false)) {
if (cost.pay(source, game, source.getSourceId(), opponent.getId(), false)) {
paid = true;
}
}