2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2016-12-16 23:03:56 +01:00
|
|
|
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/server/EntityFishingHook.java b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
2020-11-07 01:19:04 +01:00
|
|
|
index 9db1c891b69d4fbe163b3272f22351f3d0b306d1..9ab0a4638c36d46327435eec4745d2746819d9b0 100644
|
2016-12-16 23:03:56 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityFishingHook.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
2020-11-07 01:19:04 +01:00
|
|
|
@@ -201,6 +201,11 @@ public class EntityFishingHook extends IProjectile {
|
2019-04-27 08:26:04 +02:00
|
|
|
|
|
|
|
this.setMot(this.getMot().a(0.92D));
|
2020-11-03 03:22:15 +01:00
|
|
|
this.af();
|
2016-12-16 23:03:56 +01:00
|
|
|
+ // Paper start - These shouldn't be going through portals
|
2020-08-02 07:39:36 +02:00
|
|
|
+ if (this.inPortal) {
|
2016-12-16 23:03:56 +01:00
|
|
|
+ this.die();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|