1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-06 09:13:45 -09:00

[AFC] fixed Klauth, Unrivaled Ancient mana not staying until end of turn

This commit is contained in:
Evan Kranzler 2021-08-16 08:38:50 -04:00
parent 1a940241da
commit 7cc806bb48

View file

@ -97,7 +97,7 @@ class KlauthUnrivaledAncientEffect extends OneShotEffect {
outcome, manaSymbols, attackerPower, attackerPower, MultiAmountType.MANA, game outcome, manaSymbols, attackerPower, attackerPower, MultiAmountType.MANA, game
); );
player.getManaPool().addMana( player.getManaPool().addMana(
new KlauthUnrivaledAncientConditionalMana(manaList), game, source, false new KlauthUnrivaledAncientConditionalMana(manaList), game, source, true
); );
return true; return true;
} }