Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
SPIGOT-5409: Remove unnecessary defaulting in CraftMetaBookSigned
Dieser Commit ist enthalten in:
Ursprung
821238b64c
Commit
5c9e723692
@ -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