Some color tweaks

This commit is contained in:
nossr50
2019-01-17 10:45:16 -08:00
parent 292fc8eff2
commit 1585d8157e
23 changed files with 2896 additions and 2891 deletions

View File

@ -35,7 +35,8 @@ public class TextComponentFactory {
public static TextComponent getNotificationMultipleValues(String localeKey, NotificationType notificationType, String... values)
{
String preColoredString = LocaleLoader.getString(localeKey, (Object[]) values);
return new TextComponent(preColoredString);
TextComponent msg = new TextComponent(preColoredString);
return new TextComponent(msg);
}
public static TextComponent getNotificationTextComponentFromLocale(String localeKey, NotificationType notificationType)