aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0712-Add-Player-getFishHook.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0712-Add-Player-getFishHook.patch')
-rw-r--r--patches/server/0712-Add-Player-getFishHook.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/patches/server/0712-Add-Player-getFishHook.patch b/patches/server/0712-Add-Player-getFishHook.patch
new file mode 100644
index 0000000000..b2f8e7f0eb
--- /dev/null
+++ b/patches/server/0712-Add-Player-getFishHook.patch
@@ -0,0 +1,26 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: u9g <[email protected]>
+Date: Tue, 14 Jun 2022 19:36:10 -0400
+Subject: [PATCH] Add Player#getFishHook
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
+index 1e49eae80730aa9d2e49cd92759d899deb49fb90..df9d02eb1ffc3cc669e835e2c08d951283871db3 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
+@@ -160,6 +160,15 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
+ return new Location(worldServer.getWorld(), bed.getX(), bed.getY(), bed.getZ());
+ }
+ // Paper end
++ // Paper start
++ @Override
++ public org.bukkit.entity.FishHook getFishHook() {
++ if (getHandle().fishing == null) {
++ return null;
++ }
++ return (org.bukkit.entity.FishHook) getHandle().fishing.getBukkitEntity();
++ }
++ // Paper end
+ @Override
+ public boolean sleep(Location location, boolean force) {
+ Preconditions.checkArgument(location != null, "Location cannot be null");