Redefine Cyclic Dependencies (#8873)
This commit is contained in:
parent
0e4f2cc527
commit
8427c88987
39 changed files with 566 additions and 317 deletions
34
patches/api/0410-Flying-Fall-Damage-API.patch
Normal file
34
patches/api/0410-Flying-Fall-Damage-API.patch
Normal file
|
@ -0,0 +1,34 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: TreyRuffy <TreyRuffy@users.noreply.github.com>
|
||||
Date: Fri, 27 May 2022 02:25:38 -0600
|
||||
Subject: [PATCH] Flying Fall Damage API
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
||||
index b27d7414f34f1d49c56dbc33d6d23bc822adf721..b06f759b6188d87cf406072b6d7ef8266512ce50 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Player.java
|
||||
+++ b/src/main/java/org/bukkit/entity/Player.java
|
||||
@@ -1416,6 +1416,23 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
||||
*/
|
||||
public void setAllowFlight(boolean flight);
|
||||
|
||||
+ // Paper start - flying fall damage
|
||||
+ /**
|
||||
+ * Allows you to enable fall damage while {@link #getAllowFlight()} is {@code true}
|
||||
+ *
|
||||
+ * @param flyingFallDamage Enables fall damage when {@link #getAllowFlight()} is {@code true}
|
||||
+ */
|
||||
+ public void setFlyingFallDamage(@NotNull net.kyori.adventure.util.TriState flyingFallDamage);
|
||||
+
|
||||
+ /**
|
||||
+ * Allows you to get if fall damage is enabled while {@link #getAllowFlight()} is {@code true}
|
||||
+ *
|
||||
+ * @return A tristate of whether fall damage is enabled, not set, or disabled when {@link #getAllowFlight()} is {@code true}
|
||||
+ */
|
||||
+ @NotNull
|
||||
+ public net.kyori.adventure.util.TriState hasFlyingFallDamage();
|
||||
+ // Paper end
|
||||
+
|
||||
/**
|
||||
* Hides a player from this player
|
||||
*
|
Loading…
Add table
Add a link
Reference in a new issue