Fixing effect text.

This commit is contained in:
marcins78@gmail.com
2011-11-22 01:15:37 +00:00
parent e8f2ba2d13
commit f70faf5623

View File

@@ -16,7 +16,7 @@ public class RemoveThreatsEffect extends AbstractEffect {
@Override
public String getText(LotroGame game) {
return "Remove" + _count + " threat" + ((_count > 1) ? "s" : "");
return "Remove " + _count + " threat" + ((_count > 1) ? "s" : "");
}
@Override