2019-07-17 00:09:32 +02:00
|
|
|
From 700d379ba7196379a92553b35172a62cdeb80fa7 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
|
2019-07-17 00:09:32 +02:00
|
|
|
index 2a65a6685..187fea130 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
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -156,7 +156,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2019-04-27 08:26:04 +02:00
|
|
|
public boolean af;
|
2016-12-16 23:03:56 +01:00
|
|
|
public boolean impulse;
|
|
|
|
public int portalCooldown;
|
2019-04-27 08:26:04 +02:00
|
|
|
- protected boolean ai;
|
|
|
|
+ protected boolean ai; public final boolean inPortal() { return this.ai; } // Paper - OBFHELPER
|
|
|
|
protected int aj;
|
2018-08-26 20:11:49 +02:00
|
|
|
public DimensionManager dimension;
|
2019-04-27 08:26:04 +02:00
|
|
|
protected BlockPosition al;
|
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
|
2019-07-17 00:09:32 +02:00
|
|
|
index 84e6d660d..74b726937 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
|
2019-04-27 08:26:04 +02:00
|
|
|
@@ -163,6 +163,12 @@ public class EntityFishingHook extends Entity {
|
|
|
|
|
|
|
|
this.setMot(this.getMot().a(0.92D));
|
2016-12-16 23:03:56 +01:00
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
|
|
|
+
|
|
|
|
+ // Paper start - These shouldn't be going through portals
|
|
|
|
+ if (this.inPortal()) {
|
|
|
|
+ this.die();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2016-12-16 23:03:56 +01:00
|
|
|
|