mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
12 lines
553 B
Diff
12 lines
553 B
Diff
--- a/net/minecraft/server/EntitySpider.java
|
|
+++ b/net/minecraft/server/EntitySpider.java
|
|
@@ -115,7 +115,7 @@
|
|
|
|
entityskeleton.setPositionRotation(this.locX, this.locY, this.locZ, this.yaw, 0.0F);
|
|
entityskeleton.prepare(difficultydamagescaler, (GroupDataEntity) null);
|
|
- this.world.addEntity(entityskeleton);
|
|
+ this.world.addEntity(entityskeleton, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.JOCKEY); // CraftBukkit - add SpawnReason
|
|
entityskeleton.startRiding(this);
|
|
}
|
|
|