Paper/nms-patches/BlockMonsterEggs.patch

21 Zeilen
847 B
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/BlockMonsterEggs.java
+++ b/net/minecraft/server/BlockMonsterEggs.java
2019-04-23 04:00:00 +02:00
@@ -3,6 +3,8 @@
import com.google.common.collect.Maps;
2018-07-15 02:00:00 +02:00
import java.util.Map;
+import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason; // CraftBukkit
+
public class BlockMonsterEggs extends Block {
2018-07-15 02:00:00 +02:00
private final Block a;
2019-04-23 04:00:00 +02:00
@@ -29,7 +31,7 @@
EntitySilverfish entitysilverfish = (EntitySilverfish) EntityTypes.SILVERFISH.a(world);
entitysilverfish.setPositionRotation((double) blockposition.getX() + 0.5D, (double) blockposition.getY(), (double) blockposition.getZ() + 0.5D, 0.0F, 0.0F);
- world.addEntity(entitysilverfish);
+ world.addEntity(entitysilverfish, SpawnReason.SILVERFISH_BLOCK); // CraftBukkit - add SpawnReason
2016-02-29 22:32:46 +01:00
entitysilverfish.doSpawnEffect();
}