2017-05-14 20:05:01 +02:00
|
|
|
From 68cdac4d3d6d018abe0cb1a307181b998c784acb Mon Sep 17 00:00:00 2001
|
2016-12-28 06:19:58 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Tue, 27 Dec 2016 22:38:06 -0500
|
|
|
|
Subject: [PATCH] Activation Range Improvements
|
|
|
|
|
|
|
|
Fixes and adds new Immunities to improve gameplay behavior
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityCreature.java b/src/main/java/net/minecraft/server/EntityCreature.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index 653aba2ba..6f18bd75b 100644
|
2016-12-28 06:19:58 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityCreature.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityCreature.java
|
|
|
|
@@ -10,6 +10,7 @@ public abstract class EntityCreature extends EntityInsentient {
|
|
|
|
|
2017-05-14 20:05:01 +02:00
|
|
|
public static final UUID bv = UUID.fromString("E199AD21-BA8A-4C53-8D13-6182D5C69D3A");
|
|
|
|
public static final AttributeModifier bw = (new AttributeModifier(EntityCreature.bv, "Fleeing speed bonus", 2.0D, 2)).a(false);
|
2016-12-28 06:19:58 +01:00
|
|
|
+ public BlockPosition movingTarget = null; public BlockPosition getMovingTarget() { return movingTarget; } // Paper
|
|
|
|
private BlockPosition a;
|
|
|
|
private float b;
|
2017-05-14 20:05:01 +02:00
|
|
|
private final float c;
|
2016-12-28 06:19:58 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index 9bfc14e43..1fae017c0 100644
|
2016-12-28 06:19:58 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
@@ -73,7 +73,7 @@ public abstract class EntityLiving extends Entity {
|
|
|
|
public float aQ;
|
|
|
|
public float aR;
|
|
|
|
public EntityHuman killer;
|
|
|
|
- protected int lastDamageByPlayerTime;
|
|
|
|
+ public int lastDamageByPlayerTime; // Paper - public
|
|
|
|
protected boolean aU;
|
|
|
|
protected int ticksFarFromPlayer;
|
|
|
|
protected float aW;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLlama.java b/src/main/java/net/minecraft/server/EntityLlama.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index 8e165f9db..05ac3811e 100644
|
2016-12-28 06:19:58 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLlama.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLlama.java
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -363,6 +363,7 @@ public class EntityLlama extends EntityHorseChestedAbstract implements IRangedEn
|
|
|
|
return this.bM != null;
|
2016-12-28 06:19:58 +01:00
|
|
|
}
|
|
|
|
|
2017-05-14 20:05:01 +02:00
|
|
|
+ public boolean inCaravan() { return this.dU(); } // Paper - OBFHELPER
|
|
|
|
public boolean dU() {
|
|
|
|
return this.bL != null;
|
2016-12-28 06:19:58 +01:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityVillager.java b/src/main/java/net/minecraft/server/EntityVillager.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index faa82f764..ba7f250c2 100644
|
2016-12-28 06:19:58 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityVillager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityVillager.java
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -294,6 +294,7 @@ public class EntityVillager extends EntityAgeable implements NPC, IMerchant {
|
|
|
|
return Math.max(((Integer) this.datawatcher.get(EntityVillager.bz)).intValue() % 6, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final boolean isMating() { return this.dk(); } // Paper - OBFHELPER
|
|
|
|
public boolean dk() {
|
|
|
|
return this.bB;
|
|
|
|
}
|
2016-12-28 06:19:58 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderGoal.java b/src/main/java/net/minecraft/server/PathfinderGoal.java
|
2017-04-29 12:27:31 +02:00
|
|
|
index 83d9c43f3..1cb6652c2 100644
|
2016-12-28 06:19:58 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PathfinderGoal.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PathfinderGoal.java
|
|
|
|
@@ -18,7 +18,10 @@ public abstract class PathfinderGoal {
|
|
|
|
|
|
|
|
public void c() {}
|
|
|
|
|
|
|
|
- public void d() {}
|
|
|
|
+ public void d() {
|
|
|
|
+ onTaskReset(); // Paper
|
|
|
|
+ }
|
|
|
|
+ public void onTaskReset() {} // Paper
|
|
|
|
|
|
|
|
public void e() {}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderGoalGotoTarget.java b/src/main/java/net/minecraft/server/PathfinderGoalGotoTarget.java
|
2017-04-29 12:27:31 +02:00
|
|
|
index e5b5e9887..e3781f3a8 100644
|
2016-12-28 06:19:58 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PathfinderGoalGotoTarget.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PathfinderGoalGotoTarget.java
|
|
|
|
@@ -2,12 +2,21 @@ package net.minecraft.server;
|
|
|
|
|
|
|
|
public abstract class PathfinderGoalGotoTarget extends PathfinderGoal {
|
|
|
|
|
|
|
|
- private final EntityCreature c;
|
|
|
|
+ private final EntityCreature c; public EntityCreature getEntity() { return c; } // Paper - OBFHELPER
|
|
|
|
private final double d;
|
|
|
|
protected int a;
|
|
|
|
private int e;
|
|
|
|
private int f;
|
|
|
|
- protected BlockPosition b;
|
|
|
|
+ protected BlockPosition b; public BlockPosition getTarget() { return b; } public void setTarget(BlockPosition pos) { this.b = pos; getEntity().movingTarget = pos != BlockPosition.ZERO ? pos : null; } // Paper - OBFHELPER
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public void onTaskReset() {
|
|
|
|
+ super.onTaskReset();
|
|
|
|
+ setTarget(BlockPosition.ZERO);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
private boolean g;
|
|
|
|
private final int h;
|
|
|
|
|
|
|
|
@@ -69,7 +78,7 @@ public abstract class PathfinderGoalGotoTarget extends PathfinderGoal {
|
|
|
|
BlockPosition blockposition1 = blockposition.a(l, j - 1, i1);
|
|
|
|
|
|
|
|
if (this.c.f(blockposition1) && this.a(this.c.world, blockposition1)) {
|
|
|
|
- this.b = blockposition1;
|
|
|
|
+ setTarget(blockposition1); // Paper
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/spigotmc/ActivationRange.java b/src/main/java/org/spigotmc/ActivationRange.java
|
2017-05-14 20:05:01 +02:00
|
|
|
index 7396b35f5..428912cbc 100644
|
2016-12-28 06:19:58 +01:00
|
|
|
--- a/src/main/java/org/spigotmc/ActivationRange.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/ActivationRange.java
|
|
|
|
@@ -20,6 +20,7 @@ import net.minecraft.server.EntityFireball;
|
|
|
|
import net.minecraft.server.EntityFireworks;
|
|
|
|
import net.minecraft.server.EntityHuman;
|
|
|
|
import net.minecraft.server.EntityLiving;
|
|
|
|
+import net.minecraft.server.EntityLlama;
|
|
|
|
import net.minecraft.server.EntityMonster;
|
|
|
|
import net.minecraft.server.EntityProjectile;
|
|
|
|
import net.minecraft.server.EntitySheep;
|
|
|
|
@@ -210,18 +211,29 @@ public class ActivationRange
|
|
|
|
if ( entity instanceof EntityLiving )
|
|
|
|
{
|
|
|
|
EntityLiving living = (EntityLiving) entity;
|
|
|
|
- if ( /*TODO: Missed mapping? living.attackTicks > 0 || */ living.hurtTicks > 0 || living.effects.size() > 0 )
|
|
|
|
+ if ( living.lastDamageByPlayerTime > 0 || living.hurtTicks > 0 || living.effects.size() > 0 ) // Paper
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
- if ( entity instanceof EntityCreature && ( (EntityCreature) entity ).getGoalTarget() != null )
|
|
|
|
+ if ( entity instanceof EntityCreature )
|
|
|
|
+ {
|
|
|
|
+ // Paper start
|
|
|
|
+ EntityCreature creature = (EntityCreature) entity;
|
|
|
|
+ if (creature.getGoalTarget() != null || creature.getMovingTarget() != null) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+ }
|
|
|
|
+ if ( entity instanceof EntityVillager && ( (EntityVillager) entity ).isMating() ) // Paper
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2017-05-14 20:05:01 +02:00
|
|
|
- if ( entity instanceof EntityVillager && ( (EntityVillager) entity ).dk()/* Getter for first boolean */ )
|
2016-12-28 06:19:58 +01:00
|
|
|
+ // Paper start
|
|
|
|
+ if ( entity instanceof EntityLlama && ( (EntityLlama ) entity ).inCaravan() )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
if ( entity instanceof EntityAnimal )
|
|
|
|
{
|
|
|
|
EntityAnimal animal = (EntityAnimal) entity;
|
|
|
|
--
|
2017-05-14 20:05:01 +02:00
|
|
|
2.13.0
|
2016-12-28 06:19:58 +01:00
|
|
|
|