[minor] fixed tooltip rule text of Kessig Wolf Run.

This commit is contained in:
LevelX2 2013-03-22 10:01:55 +01:00
parent 27b55b4e49
commit e14886ffda
2 changed files with 6 additions and 5 deletions

View file

@ -151,7 +151,7 @@ public class BoostTargetEffect extends ContinuousEffectImpl<BoostTargetEffect> {
message = toughness.getMessage();
fixedPart = " for each ";
}
if (message != null && fixedPart != null) {
if (message != null && !message.isEmpty() && fixedPart != null) {
sb.append(fixedPart).append(message);
}
return sb.toString();