mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
fix for #7295
This commit is contained in:
parent
34e9c2fdfb
commit
7753ca305e
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ class SzatsWillEffect extends OneShotEffect {
|
||||||
.max()
|
.max()
|
||||||
.orElse(0);
|
.orElse(0);
|
||||||
if (maxPower > 0) {
|
if (maxPower > 0) {
|
||||||
new BreedingPitThrullToken().putOntoBattlefield(1, game, source, source.getControllerId()
|
new BreedingPitThrullToken().putOntoBattlefield(maxPower, game, source, source.getControllerId()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue