2015-03-23 20:40:52 +01:00
|
|
|
From dba1e342404e73aa510c825ffa84e59bff427690 Mon Sep 17 00:00:00 2001
|
2015-02-13 21:50:25 +01:00
|
|
|
From: Zach <zach.brown@destroystokyo.com>
|
|
|
|
Date: Fri, 13 Feb 2015 14:49:30 -0600
|
|
|
|
Subject: [PATCH] Enderman drop the block they're holding when they die
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityEnderman.java b/src/main/java/net/minecraft/server/EntityEnderman.java
|
2015-03-08 02:16:09 +01:00
|
|
|
index 2bf00b0..ef8225b 100644
|
2015-02-13 21:50:25 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityEnderman.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityEnderman.java
|
2015-03-08 02:16:09 +01:00
|
|
|
@@ -251,6 +251,13 @@ public class EntityEnderman extends EntityMonster {
|
2015-02-13 21:50:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // PaperSpigot start - Drop the block the entity is holding when it dies
|
|
|
|
+ Item carriedItem = Item.getItemOf(getCarried().getBlock());
|
|
|
|
+ if (carriedItem != null) {
|
|
|
|
+ this.a(carriedItem, 1);
|
|
|
|
+ }
|
|
|
|
+ // PaperSpigot end
|
|
|
|
+
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCarried(IBlockData iblockdata) {
|
|
|
|
--
|
2015-03-08 02:16:09 +01:00
|
|
|
1.9.1
|
2015-02-13 21:50:25 +01:00
|
|
|
|