v0.3.0b: fixed a typo in sniper's mark

This commit is contained in:
Evan Debenham 2015-05-29 00:46:42 -04:00
parent ed48a40c09
commit d0078f5ab8

View File

@ -54,7 +54,7 @@ public class SnipersMark extends FlavourBuff {
@Override
public String desc() {
Char ch = (Char)Actor.findById(object);
return "The sniper is honed in " + ((ch == null) ? "on a lost target" : "on the nearby" + ch.name ) + ", " +
return "The sniper is honed in " + ((ch == null) ? "on a lost target" : "on the nearby " + ch.name ) + ", " +
"gaining increased attack speed and armor penetration while attacking it.\n" +
"\n" +
"The sniper will remain honed in until she switches targets, stops attacking, or the target dies.";