mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
fix Gev, Scaled Scorch
This commit is contained in:
parent
1237e01f8d
commit
d249dcc815
1 changed files with 2 additions and 1 deletions
|
|
@ -101,7 +101,8 @@ class GevScaledScorchEntersEffect extends ReplacementEffectImpl {
|
|||
int num = game.getOpponents(controller.getId())
|
||||
.stream()
|
||||
.mapToInt(watcher::getLifeLost)
|
||||
.reduce(0, Integer::sum);
|
||||
.map(x -> x > 0 ? 1 : 0)
|
||||
.sum();
|
||||
if (num > 0) {
|
||||
creature.addCounters(CounterType.P1P1.createInstance(num), source.getControllerId(), source, game);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue