2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Fri, 16 Dec 2016 16:03:19 -0600
|
|
|
|
Subject: [PATCH] Don't let fishinghooks use portals
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/projectile/FishingHook.java b/src/main/java/net/minecraft/world/entity/projectile/FishingHook.java
|
2021-10-05 05:14:11 +02:00
|
|
|
index b007efe91c0abef3e90179b67dfdaf999ced11d2..3353892ab858db5e0ad2833bf56c6a367248f6fb 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/projectile/FishingHook.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/projectile/FishingHook.java
|
2021-06-12 09:24:28 +02:00
|
|
|
@@ -253,6 +253,11 @@ public class FishingHook extends Projectile {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
this.setDeltaMovement(this.getDeltaMovement().scale(0.92D));
|
|
|
|
this.reapplyPosition();
|
|
|
|
+ // Paper start - These shouldn't be going through portals
|
|
|
|
+ if (this.isInsidePortal) {
|
2021-06-12 09:24:28 +02:00
|
|
|
+ this.discard();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|