mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
SPIGOT-783: API for book generation data.
This commit is contained in:
parent
dd0e968c6a
commit
cee5bbf00c
@ -199,6 +199,16 @@ public class CraftMetaBook extends CraftMetaItem implements BookMeta {
|
||||
this.author = author;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Generation getGeneration() {
|
||||
return (generation == null) ? null : Generation.values()[generation];
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGeneration(Generation generation) {
|
||||
this.generation = (generation == null) ? null : generation.ordinal();
|
||||
}
|
||||
|
||||
public String getPage(final int page) {
|
||||
Validate.isTrue(isValidPage(page), "Invalid page number");
|
||||
return CraftChatMessage.fromComponent(pages.get(page - 1));
|
||||
|
Loading…
Reference in New Issue
Block a user