mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
28 lines
940 B
Diff
28 lines
940 B
Diff
From 00c35bcd2392c48a4d19f2ed255777ccc9c46366 Mon Sep 17 00:00:00 2001
|
|
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
|
|
index a250062..f3afbbd 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityEnderman.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityEnderman.java
|
|
@@ -251,6 +251,13 @@ public class EntityEnderman extends EntityMonster {
|
|
}
|
|
}
|
|
|
|
+ // 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) {
|
|
--
|
|
2.5.2
|
|
|