geforkt von Mirrors/Paper
SPIGOT-5409: Remove unnecessary defaulting in CraftMetaBookSigned
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
5aa1f5b5e8
Commit
e7370ab173
@ -56,14 +56,10 @@ class CraftMetaBookSigned extends CraftMetaBook implements BookMeta {
|
|||||||
|
|
||||||
if (hasTitle()) {
|
if (hasTitle()) {
|
||||||
itemData.setString(BOOK_TITLE.NBT, this.title);
|
itemData.setString(BOOK_TITLE.NBT, this.title);
|
||||||
} else {
|
|
||||||
itemData.setString(BOOK_TITLE.NBT, " ");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasAuthor()) {
|
if (hasAuthor()) {
|
||||||
itemData.setString(BOOK_AUTHOR.NBT, this.author);
|
itemData.setString(BOOK_AUTHOR.NBT, this.author);
|
||||||
} else {
|
|
||||||
itemData.setString(BOOK_AUTHOR.NBT, " ");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasPages()) {
|
if (hasPages()) {
|
||||||
@ -79,8 +75,6 @@ class CraftMetaBookSigned extends CraftMetaBook implements BookMeta {
|
|||||||
|
|
||||||
if (generation != null) {
|
if (generation != null) {
|
||||||
itemData.setInt(GENERATION.NBT, generation);
|
itemData.setInt(GENERATION.NBT, generation);
|
||||||
} else {
|
|
||||||
itemData.setInt(GENERATION.NBT, 0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren