Fix minor colorization issue.

This commit is contained in:
Olof Larsson 2015-05-06 16:15:36 +02:00
parent 54d58b00e8
commit 96e11336ef

View File

@ -13,7 +13,7 @@ public abstract class ARAbstractPrimitive<T> extends ARAbstractException<T>
@Override
public String extractErrorMessage(String arg, CommandSender sender, Exception ex)
{
return Txt.parse("<b>\"<h>%s\"<b> is not a %s.", arg, this.getTypeName());
return Txt.parse("<b>\"<h>%s<b>\" is not a %s.", arg, this.getTypeName());
}
}