Paper/Spigot-Server-Patches/0012-Allow-nerfed-mobs-to-jump.patch

27 lines
980 B
Diff
Raw Normal View History

2015-05-19 01:41:57 +02:00
From 9031da4fcbb0a318f997e732acb6d366f1f66b39 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
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-05-19 01:41:57 +02:00
index 73cdd41..120e75b 100644
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
2015-05-19 01:41:57 +02:00
@@ -460,6 +460,12 @@ public abstract class EntityInsentient extends EntityLiving {
// 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();
+ // PaperSpigot end
return;
}
// Spigot End
--
2015-05-19 01:41:57 +02:00
2.4.1.windows.1