2017-05-14 20:05:01 +02:00
|
|
|
From 23a9480ea73edb509eb133e92e578716a845b593 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/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index 5476aa5f7..ca05b3310 100644
|
2016-12-16 23:03:56 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -144,7 +144,7 @@ public abstract class Entity implements ICommandListener {
|
2016-12-16 23:03:56 +01:00
|
|
|
public boolean ah;
|
|
|
|
public boolean impulse;
|
|
|
|
public int portalCooldown;
|
|
|
|
- protected boolean ak;
|
|
|
|
+ protected boolean ak; public boolean inPortal() { return ak; } // Paper - OBFHELPER
|
|
|
|
protected int al;
|
|
|
|
public int dimension;
|
|
|
|
protected BlockPosition an;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityFishingHook.java b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index e6a1e5a2a..d905c338f 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
|
2016-12-20 23:34:27 +01:00
|
|
|
@@ -185,6 +185,12 @@ public class EntityFishingHook extends Entity {
|
2016-12-16 23:03:56 +01:00
|
|
|
this.motY *= 0.92D;
|
|
|
|
this.motZ *= 0.92D;
|
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
|
|
|
+
|
|
|
|
+ // Paper start - These shouldn't be going through portals
|
|
|
|
+ if (this.inPortal()) {
|
|
|
|
+ this.die();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2017-05-14 20:05:01 +02:00
|
|
|
2.13.0
|
2016-12-16 23:03:56 +01:00
|
|
|
|