2018-08-26 20:11:49 +02:00
|
|
|
From 8d513424da1fcbd8b169d842586a0adf68658f9a 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
|
2018-08-26 20:11:49 +02:00
|
|
|
index 5bd129bcaf..7f430e590f 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
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -158,7 +158,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2018-07-16 22:08:09 +02:00
|
|
|
public boolean ak;
|
2016-12-16 23:03:56 +01:00
|
|
|
public boolean impulse;
|
|
|
|
public int portalCooldown;
|
2018-07-16 22:08:09 +02:00
|
|
|
- protected boolean an;
|
|
|
|
+ protected boolean an; public boolean inPortal() { return an; } // Paper - OBFHELPER
|
|
|
|
protected int ao;
|
2018-08-26 20:11:49 +02:00
|
|
|
public DimensionManager dimension;
|
2018-07-16 22:08:09 +02:00
|
|
|
protected BlockPosition aq;
|
2016-12-16 23:03:56 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityFishingHook.java b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index b52aaa57e3..62e8f27aa7 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
|
2018-07-16 22:08:09 +02:00
|
|
|
@@ -190,6 +190,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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2018-08-06 01:46:43 +02:00
|
|
|
2.18.0
|
2016-12-16 23:03:56 +01:00
|
|
|
|