3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 12:30:06 +01:00
Paper/nms-patches/BlockMonsterEggs.patch

21 Zeilen
849 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;
2020-06-25 02:00:00 +02:00
@@ -26,7 +28,7 @@
2020-08-11 23:00:00 +02:00
EntitySilverfish entitysilverfish = (EntitySilverfish) EntityTypes.SILVERFISH.a((World) worldserver);
2020-06-25 02:00:00 +02:00
entitysilverfish.setPositionRotation((double) blockposition.getX() + 0.5D, (double) blockposition.getY(), (double) blockposition.getZ() + 0.5D, 0.0F, 0.0F);
2020-08-11 23:00:00 +02:00
- worldserver.addEntity(entitysilverfish);
+ worldserver.addEntity(entitysilverfish, SpawnReason.SILVERFISH_BLOCK); // CraftBukkit - add SpawnReason
2020-06-25 02:00:00 +02:00
entitysilverfish.doSpawnEffect();
}