mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Change Minions' Murmurs from damage to life loss
This commit is contained in:
parent
eaa16a179b
commit
a58432ac3f
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ public class MinionsMurmurs extends CardImpl {
|
||||||
if (controller != null) {
|
if (controller != null) {
|
||||||
int creaturesControlled = game.getBattlefield().countAll(new FilterCreaturePermanent(), controller.getId(), game);
|
int creaturesControlled = game.getBattlefield().countAll(new FilterCreaturePermanent(), controller.getId(), game);
|
||||||
controller.drawCards(creaturesControlled, game);
|
controller.drawCards(creaturesControlled, game);
|
||||||
controller.damage(creaturesControlled, source.getId(), game, false, true);
|
controller.loseLife(creaturesControlled, game);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue