2018-07-15 02:00:00 +02:00
|
|
|
--- a/net/minecraft/server/RegionLimitedWorldAccess.java
|
|
|
|
+++ b/net/minecraft/server/RegionLimitedWorldAccess.java
|
2018-12-25 22:00:00 +01:00
|
|
|
@@ -200,7 +200,14 @@
|
2018-07-15 02:00:00 +02:00
|
|
|
this.y(blockposition).e(blockposition);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // CraftBukkit start
|
|
|
|
public boolean addEntity(Entity entity) {
|
|
|
|
+ return addEntity(entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.DEFAULT);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean addEntity(Entity entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
|
|
|
|
+ // CraftBukkit end
|
|
|
|
int i = MathHelper.floor(entity.locX / 16.0D);
|
|
|
|
int j = MathHelper.floor(entity.locZ / 16.0D);
|
|
|
|
|