2015-03-23 20:40:52 +01:00
|
|
|
From fb2cc2c1096ef34b2f7a046f14823dcb7f29ee0f Mon Sep 17 00:00:00 2001
|
2015-01-29 22:25:50 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
2015-03-08 02:16:09 +01:00
|
|
|
Date: Sat, 7 Mar 2015 21:03:06 -0600
|
2014-06-29 20:34:16 +02:00
|
|
|
Subject: [PATCH] Allow nerfed mobs to jump
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityInsentient.java b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2015-03-08 02:16:09 +01:00
|
|
|
index 134897a..b580217 100644
|
2014-06-29 20:34:16 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2014-11-28 02:17:45 +01:00
|
|
|
@@ -454,6 +454,12 @@ public abstract class EntityInsentient extends EntityLiving {
|
2014-06-29 20:34:16 +02:00
|
|
|
// Spigot Start
|
|
|
|
if ( this.fromMobSpawner )
|
|
|
|
{
|
|
|
|
+ // PaperSpigot start - Allow nerfed mobs to jump
|
|
|
|
+ this.world.methodProfiler.a("goalSelector");
|
|
|
|
+ this.goalSelector.a();
|
|
|
|
+ this.world.methodProfiler.c("jump");
|
2014-11-28 02:17:45 +01:00
|
|
|
+ this.g.b();
|
2014-06-29 20:34:16 +02:00
|
|
|
+ // PaperSpigot end
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Spigot End
|
|
|
|
--
|
2015-03-08 02:16:09 +01:00
|
|
|
1.9.1
|
2014-06-29 20:34:16 +02:00
|
|
|
|