mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-18 20:53:09 +01:00
da9d110d5b
This patch does not appear to be doing anything useful, and may hide errors. Currently, the save logic does not run through this path either so it did not do anything. Additionally, properly implement support for handling RegionFileSizeException in Moonrise.
33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: kokiriglade <60290002+celerry@users.noreply.github.com>
|
|
Date: Sat, 23 Nov 2024 18:58:49 +0000
|
|
Subject: [PATCH] Expanded Art API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftArt.java b/src/main/java/org/bukkit/craftbukkit/CraftArt.java
|
|
index 40af940193d0df66bbcdcf5f46132e304016a4d7..9d73954282104a6e315c1840feb7d6034d27cfbe 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftArt.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftArt.java
|
|
@@ -75,6 +75,22 @@ public class CraftArt implements Art, Handleable<PaintingVariant> {
|
|
return this.paintingVariant.height();
|
|
}
|
|
|
|
+ // Paper start - Expand Art API
|
|
+ @Override
|
|
+ public net.kyori.adventure.text.Component title() {
|
|
+ return this.paintingVariant.title().map(io.papermc.paper.adventure.PaperAdventure::asAdventure).orElse(null);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public net.kyori.adventure.text.Component author() {
|
|
+ return this.paintingVariant.author().map(io.papermc.paper.adventure.PaperAdventure::asAdventure).orElse(null);
|
|
+ }
|
|
+
|
|
+ public net.kyori.adventure.key.Key assetId() {
|
|
+ return io.papermc.paper.adventure.PaperAdventure.asAdventure(this.paintingVariant.assetId());
|
|
+ }
|
|
+ // Paper end - Expand Art API
|
|
+
|
|
@Override
|
|
public int getId() {
|
|
return CraftRegistry.getMinecraftRegistry(Registries.PAINTING_VARIANT).getId(this.paintingVariant);
|