mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 17:32:03 +01:00
Check Drowned for Villager Aggression Config (#1560)
This commit is contained in:
parent
3fe4a2dd2f
commit
e43da4fba9
1 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
||||||
|
Date: Wed, 10 Oct 2018 21:22:44 -0500
|
||||||
|
Subject: [PATCH] Check Drowned for Villager Aggression Config
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/EntityDrowned.java b/src/main/java/net/minecraft/server/EntityDrowned.java
|
||||||
|
index aeb34568b..467c0c8a8 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/EntityDrowned.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/EntityDrowned.java
|
||||||
|
@@ -0,0 +0,0 @@ public class EntityDrowned extends EntityZombie implements IRangedEntity {
|
||||||
|
this.goalSelector.a(7, new PathfinderGoalRandomStroll(this, 1.0D));
|
||||||
|
this.targetSelector.a(1, new PathfinderGoalHurtByTarget(this, true, new Class[]{EntityDrowned.class}));
|
||||||
|
this.targetSelector.a(2, new PathfinderGoalNearestAttackableTarget(this, EntityHuman.class, 10, true, false, new EntityDrowned.b(this)));
|
||||||
|
- this.targetSelector.a(3, new PathfinderGoalNearestAttackableTarget(this, EntityVillager.class, false));
|
||||||
|
+ if ( world.spigotConfig.zombieAggressiveTowardsVillager ) this.targetSelector.a(3, new PathfinderGoalNearestAttackableTarget(this, EntityVillager.class, false)); // Paper
|
||||||
|
this.targetSelector.a(3, new PathfinderGoalNearestAttackableTarget(this, EntityIronGolem.class, true));
|
||||||
|
this.targetSelector.a(5, new PathfinderGoalNearestAttackableTarget(this, EntityTurtle.class, 10, true, false, EntityTurtle.bC));
|
||||||
|
}
|
||||||
|
@@ -0,0 +0,0 @@ public class EntityDrowned extends EntityZombie implements IRangedEntity {
|
||||||
|
return this.a.f(entityhuman);
|
||||||
|
}
|
||||||
|
|
||||||
|
- // $FF: synthetic method
|
||||||
|
- public boolean test(@Nullable Object object) {
|
||||||
|
- return this.a((EntityHuman)object);
|
||||||
|
+ // Paper start - decompile error
|
||||||
|
+ public boolean test(@Nullable EntityHuman entityhuman) {
|
||||||
|
+ return this.a(entityhuman);
|
||||||
|
+ // Paper end
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
Loading…
Reference in a new issue