mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Add more experimental annotations
This commit is contained in:
parent
0e2d6d6550
commit
f4c92b410c
2 changed files with 541 additions and 160 deletions
File diff suppressed because it is too large
Load diff
|
@ -7,7 +7,7 @@ Add missing instrument enums
|
||||||
fix some wrong javadocs
|
fix some wrong javadocs
|
||||||
|
|
||||||
diff --git a/src/main/java/org/bukkit/Instrument.java b/src/main/java/org/bukkit/Instrument.java
|
diff --git a/src/main/java/org/bukkit/Instrument.java b/src/main/java/org/bukkit/Instrument.java
|
||||||
index de976be7132d05506fde7a839cac3954b0dd8da4..27dafd1850d3b984a6af155f5c08ee543cd109f0 100644
|
index de976be7132d05506fde7a839cac3954b0dd8da4..c449b4a03e43752b98e008b69d2a956cd9990ba0 100644
|
||||||
--- a/src/main/java/org/bukkit/Instrument.java
|
--- a/src/main/java/org/bukkit/Instrument.java
|
||||||
+++ b/src/main/java/org/bukkit/Instrument.java
|
+++ b/src/main/java/org/bukkit/Instrument.java
|
||||||
@@ -7,7 +7,7 @@ import org.jetbrains.annotations.Nullable;
|
@@ -7,7 +7,7 @@ import org.jetbrains.annotations.Nullable;
|
||||||
|
@ -33,43 +33,43 @@ index de976be7132d05506fde7a839cac3954b0dd8da4..27dafd1850d3b984a6af155f5c08ee54
|
||||||
* Zombie is normally played when a Zombie Head is on top of the note block.
|
* Zombie is normally played when a Zombie Head is on top of the note block.
|
||||||
*/
|
*/
|
||||||
- ZOMBIE,
|
- ZOMBIE,
|
||||||
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper - 1.20
|
||||||
+ ZOMBIE(0x10), // Paper
|
+ ZOMBIE(0x10), // Paper
|
||||||
/**
|
/**
|
||||||
* Skeleton is normally played when a Skeleton Head is on top of the note block.
|
* Skeleton is normally played when a Skeleton Head is on top of the note block.
|
||||||
*/
|
*/
|
||||||
- SKELETON,
|
- SKELETON,
|
||||||
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper - 1.20
|
||||||
+ SKELETON(0x11), // Paper
|
+ SKELETON(0x11), // Paper
|
||||||
/**
|
/**
|
||||||
* Creeper is normally played when a Creeper Head is on top of the note block.
|
* Creeper is normally played when a Creeper Head is on top of the note block.
|
||||||
*/
|
*/
|
||||||
- CREEPER,
|
- CREEPER,
|
||||||
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper - 1.20
|
||||||
+ CREEPER(0x12), // Paper
|
+ CREEPER(0x12), // Paper
|
||||||
/**
|
/**
|
||||||
* Dragon is normally played when a Dragon Head is on top of the note block.
|
* Dragon is normally played when a Dragon Head is on top of the note block.
|
||||||
*/
|
*/
|
||||||
- DRAGON,
|
- DRAGON,
|
||||||
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper - 1.20
|
||||||
+ DRAGON(0x13), // Paper
|
+ DRAGON(0x13), // Paper
|
||||||
/**
|
/**
|
||||||
* Wither Skeleton is normally played when a Wither Skeleton Head is on top of the note block.
|
* Wither Skeleton is normally played when a Wither Skeleton Head is on top of the note block.
|
||||||
*/
|
*/
|
||||||
- WITHER_SKELETON,
|
- WITHER_SKELETON,
|
||||||
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper - 1.20
|
||||||
+ WITHER_SKELETON(0x14), // Paper
|
+ WITHER_SKELETON(0x14), // Paper
|
||||||
/**
|
/**
|
||||||
* Piglin is normally played when a Piglin Head is on top of the note block.
|
* Piglin is normally played when a Piglin Head is on top of the note block.
|
||||||
*/
|
*/
|
||||||
- PIGLIN,
|
- PIGLIN,
|
||||||
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper - 1.20
|
||||||
+ PIGLIN(0x15), // Paper
|
+ PIGLIN(0x15), // Paper
|
||||||
/**
|
/**
|
||||||
* Custom Sound is normally played when a Player Head with the required data is on top of the note block.
|
* Custom Sound is normally played when a Player Head with the required data is on top of the note block.
|
||||||
*/
|
*/
|
||||||
- CUSTOM_HEAD;
|
- CUSTOM_HEAD;
|
||||||
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper
|
+ @org.jetbrains.annotations.ApiStatus.Experimental // Paper - 1.20
|
||||||
+ CUSTOM_HEAD(0x16); // Paper
|
+ CUSTOM_HEAD(0x16); // Paper
|
||||||
|
|
||||||
private final byte type;
|
private final byte type;
|
||||||
|
|
Loading…
Reference in a new issue