mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
814c742554
Discussion ongoing in PR #449
21 lines
1001 B
Diff
21 lines
1001 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, (NBTTagCompound) null);
|
|
- this.world.addEntity(entityskeleton);
|
|
+ this.world.addEntity(entityskeleton, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.JOCKEY); // CraftBukkit - add SpawnReason
|
|
entityskeleton.startRiding(this);
|
|
}
|
|
|
|
@@ -130,7 +130,7 @@
|
|
MobEffectList mobeffectlist = ((EntitySpider.GroupDataSpider) object).a;
|
|
|
|
if (mobeffectlist != null) {
|
|
- this.addEffect(new MobEffect(mobeffectlist, Integer.MAX_VALUE));
|
|
+ this.addEffect(new MobEffect(mobeffectlist, Integer.MAX_VALUE), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.SPIDER_SPAWN); // CraftBukkit
|
|
}
|
|
}
|
|
|