mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
* 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:
parent
cdecd516a2
commit
d47bfbdbc1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue