PaperMC/patches/api/0395-Flying-Fall-Damage-API.patch

35 lines
1.4 KiB
Diff
Raw Normal View History

2022-12-27 21:41:59 +01:00
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
2024-04-23 19:02:08 +02:00
index 5e798ea4c66e1a7ce6239b972e6a13810850a438..ce5530c27572fefd732301e07393fab0d9c99afb 100644
2022-12-27 21:41:59 +01:00
--- a/src/main/java/org/bukkit/entity/Player.java
+++ b/src/main/java/org/bukkit/entity/Player.java
2024-04-23 19:02:08 +02:00
@@ -1903,6 +1903,23 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
2022-12-27 21:41:59 +01:00
*/
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
*