Fix return value of LivingArmorEffect

This commit is contained in:
Matt Oslan 2016-09-04 10:39:12 -04:00
parent 9b1dd2ceeb
commit 87fa888852

View file

@ -91,6 +91,7 @@ public class LivingArmor extends CardImpl {
if (creature != null) {
int amount = creature.getConvertedManaCost();
creature.addCounters(new BoostCounter(0, 1, amount), game);
return true;
}
return false;
}