Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 04:50:05 +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()) {
|
||||
itemData.setString(BOOK_TITLE.NBT, this.title);
|
||||
} else {
|
||||
itemData.setString(BOOK_TITLE.NBT, " ");
|
||||
}
|
||||
|
||||
if (hasAuthor()) {
|
||||
itemData.setString(BOOK_AUTHOR.NBT, this.author);
|
||||
} else {
|
||||
itemData.setString(BOOK_AUTHOR.NBT, " ");
|
||||
}
|
||||
|
||||
if (hasPages()) {
|
||||
@ -79,8 +75,6 @@ class CraftMetaBookSigned extends CraftMetaBook implements BookMeta {
|
||||
|
||||
if (generation != null) {
|
||||
itemData.setInt(GENERATION.NBT, generation);
|
||||
} else {
|
||||
itemData.setInt(GENERATION.NBT, 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren