SPIGOT-5471: Allow empty title/author for books

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-12-22 18:40:55 +11:00
parent 0f7b5e8049
commit ef9f6da935

View file

@ -163,12 +163,12 @@ public class CraftMetaBook extends CraftMetaItem implements BookMeta {
@Override
public boolean hasAuthor() {
return !Strings.isNullOrEmpty(author);
return this.author != null;
}
@Override
public boolean hasTitle() {
return !Strings.isNullOrEmpty(title);
return this.title != null;
}
@Override