diff options
Diffstat (limited to 'patches/api/0218-Player-elytra-boost-API.patch')
-rw-r--r-- | patches/api/0218-Player-elytra-boost-API.patch | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/patches/api/0218-Player-elytra-boost-API.patch b/patches/api/0218-Player-elytra-boost-API.patch index 2c50e28530..0c4a7066a4 100644 --- a/patches/api/0218-Player-elytra-boost-API.patch +++ b/patches/api/0218-Player-elytra-boost-API.patch @@ -5,14 +5,14 @@ Subject: [PATCH] Player elytra boost API diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java -index 110d3d031ae2408e5caac2fdfd3f8f8efbeb7e05..9f1e3bc711e34a1a30aefc7c60068c84e3ea02ba 100644 +index b128d2e9a2bc1629dbe650ba7d7e3a19a502de7b..f086585e03b6b782431abd69f163e648bc1c22b4 100644 --- a/src/main/java/org/bukkit/entity/Player.java +++ b/src/main/java/org/bukkit/entity/Player.java -@@ -2986,6 +2986,24 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM - */ - @NotNull - <T> T getClientOption(@NotNull com.destroystokyo.paper.ClientOption<T> option); -+ +@@ -3057,6 +3057,25 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM + <T> @NotNull T getClientOption(com.destroystokyo.paper.@NotNull ClientOption<T> option); + // Paper end - client option API + ++ // Paper start - elytra boost API + /** + * Boost a Player that's {@link #isGliding()} using a {@link Firework}. + * If the creation of the entity is cancelled, no boosting is done. @@ -25,11 +25,12 @@ index 110d3d031ae2408e5caac2fdfd3f8f8efbeb7e05..9f1e3bc711e34a1a30aefc7c60068c84 + * @deprecated use {@link HumanEntity#fireworkBoost(ItemStack)} instead. Note that this method <b>does not</b> + * check if the player is gliding or not. + */ -+ @Nullable -+ default Firework boostElytra(@NotNull ItemStack firework) { ++ default @Nullable Firework boostElytra(final @NotNull ItemStack firework) { + com.google.common.base.Preconditions.checkState(this.isGliding(), "Player must be gliding"); + return this.fireworkBoost(firework); + } - // Paper end - ++ // Paper end - elytra boost API ++ // Spigot start + public class Spigot extends Entity.Spigot { + |