Fixed: Hoard-Smelter Dragon gets +X\+X instead of +X\+0

This commit is contained in:
magenoxx 2011-05-12 20:24:58 +04:00
parent 90c54aad24
commit f01ea0c775

View file

@ -99,7 +99,6 @@ class HoardSmelterEffect extends ContinuousEffectImpl<HoardSmelterEffect> {
Permanent target = game.getPermanent(source.getSourceId());
if (target != null) {
target.addPower(costValue);
target.addToughness(costValue);
return true;
}
return false;