mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-12 13:44:43 +01:00
20 lines
1.0 KiB
Diff
20 lines
1.0 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||
|
Date: Mon, 19 Jun 2023 18:17:47 -0700
|
||
|
Subject: [PATCH] Mark experimental mc things appropriately
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/org/bukkit/inventory/ItemType.java b/src/main/java/org/bukkit/inventory/ItemType.java
|
||
|
index 27a1d255b8fcbd6487e4d4eb1abf784b43eaf90e..2beed0864779ab121dc41b330e1ba4bc9505a38a 100644
|
||
|
--- a/src/main/java/org/bukkit/inventory/ItemType.java
|
||
|
+++ b/src/main/java/org/bukkit/inventory/ItemType.java
|
||
|
@@ -904,6 +904,8 @@ public interface ItemType extends Keyed, Translatable, net.kyori.adventure.trans
|
||
|
ItemType EGG = getItemType("egg");
|
||
|
ItemType COMPASS = getItemType("compass");
|
||
|
ItemType RECOVERY_COMPASS = getItemType("recovery_compass");
|
||
|
+ @org.bukkit.MinecraftExperimental // Paper
|
||
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
||
|
ItemType BUNDLE = getItemType("bundle");
|
||
|
ItemType FISHING_ROD = getItemType("fishing_rod");
|
||
|
ItemType CLOCK = getItemType("clock");
|