Fix item builder to properly use null item titles

This commit is contained in:
AlexTheCoder 2017-05-04 20:46:38 -04:00
parent 455e09a9da
commit 00d31ffad3
1 changed files with 8 additions and 3 deletions

View File

@ -400,9 +400,14 @@ public class ItemBuilder
public ItemBuilder setTitle(String title) public ItemBuilder setTitle(String title)
{ {
_title = (title == null ? null if (title == null)
: (title.length() > 2 && ChatColor.getLastColors(title.substring(0, 2)).length() == 0 ? ChatColor.WHITE : "")) {
+ title; _title = null;
}
else
{
_title = ((title.length() > 2 && ChatColor.getLastColors(title.substring(0, 2)).length() == 0) ? ChatColor.WHITE : "") + title;
}
return this; return this;
} }