Change Minions' Murmurs from damage to life loss

This commit is contained in:
Matt Oslan 2016-09-03 17:04:27 -04:00
parent eaa16a179b
commit a58432ac3f

View file

@ -83,7 +83,7 @@ public class MinionsMurmurs extends CardImpl {
if (controller != null) {
int creaturesControlled = game.getBattlefield().countAll(new FilterCreaturePermanent(), controller.getId(), game);
controller.drawCards(creaturesControlled, game);
controller.damage(creaturesControlled, source.getId(), game, false, true);
controller.loseLife(creaturesControlled, game);
return true;
}
return false;