spigot/Bukkit-Patches/0007-Player-Collision-API.patch

44 lines
1.5 KiB
Diff
Raw Normal View History

2023-06-08 01:30:00 +10:00
From 63506f490bc1f471f620ab3a0f36e0766389e6ee Mon Sep 17 00:00:00 2001
From: md_5 <md_5@live.com.au>
Date: Sat, 3 Aug 2013 19:20:50 +1000
Subject: [PATCH] Player Collision API
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
2023-06-08 01:30:00 +10:00
index a8ecc7ca..b7c46512 100644
--- a/src/main/java/org/bukkit/entity/Player.java
+++ b/src/main/java/org/bukkit/entity/Player.java
2023-06-08 01:30:00 +10:00
@@ -1782,6 +1782,29 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
2020-01-24 17:56:32 +11:00
public InetSocketAddress getRawAddress() {
throw new UnsupportedOperationException("Not supported yet.");
}
+
+ /**
+ * Gets whether the player collides with entities
+ *
+ * @return the player's collision toggle state
2016-03-27 20:36:54 +11:00
+ * @deprecated see {@link LivingEntity#isCollidable()}
+ */
2016-03-27 20:36:54 +11:00
+ @Deprecated
2020-01-24 17:56:32 +11:00
+ public boolean getCollidesWithEntities() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ /**
+ * Sets whether the player collides with entities
+ *
+ * @param collides whether the player should collide with entities or
+ * not.
2016-03-27 20:36:54 +11:00
+ * @deprecated {@link LivingEntity#setCollidable(boolean)}
+ */
2016-03-27 20:36:54 +11:00
+ @Deprecated
2020-01-24 17:56:32 +11:00
+ public void setCollidesWithEntities(boolean collides) {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}
2019-03-13 17:43:06 +11:00
@NotNull
--
2023-05-11 07:10:33 +10:00
2.40.1