[CMR] Implemented Yurlock of Scorch Thrash

This commit is contained in:
Evan Kranzler 2020-11-08 14:42:50 -05:00
parent 5578437dde
commit e387cf3c54
4 changed files with 153 additions and 1 deletions

View file

@ -1540,7 +1540,10 @@ public abstract class GameImpl implements Game, Serializable {
@Override
public void emptyManaPools() {
for (Player player : getPlayers().values()) {
player.getManaPool().emptyPool(this);
int amount = player.getManaPool().emptyPool(this);
if (state.isManaBurn() && amount > 0) {
player.loseLife(amount, this, false);
}
}
}