mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
45 lines
2.1 KiB
Diff
45 lines
2.1 KiB
Diff
--- a/net/minecraft/server/EntityTurtle.java
|
|
+++ b/net/minecraft/server/EntityTurtle.java
|
|
@@ -258,7 +258,9 @@
|
|
protected void l() {
|
|
super.l();
|
|
if (!this.isBaby() && this.world.getGameRules().getBoolean("doMobLoot")) {
|
|
+ this.forceDrops = true; // CraftBukkit
|
|
this.a((IMaterial) Items.SCUTE, 1);
|
|
+ this.forceDrops = false; // CraftBukkit
|
|
}
|
|
|
|
}
|
|
@@ -285,7 +287,9 @@
|
|
|
|
@Override
|
|
public void onLightningStrike(EntityLightning entitylightning) {
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.entityDamage = entitylightning; // CraftBukkit
|
|
this.damageEntity(DamageSource.LIGHTNING, Float.MAX_VALUE);
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.entityDamage = null; // CraftBukkit
|
|
}
|
|
|
|
static class g extends NavigationGuardian {
|
|
@@ -445,8 +449,12 @@
|
|
} else if (this.g.bH > 200) {
|
|
World world = this.g.world;
|
|
|
|
+ // CraftBukkit start
|
|
+ if (!org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(this.g, this.e.up(), (IBlockData) Blocks.TURTLE_EGG.getBlockData().set(BlockTurtleEgg.b, this.g.random.nextInt(4) + 1)).isCancelled()) {
|
|
world.a((EntityHuman) null, blockposition, SoundEffects.ENTITY_TURTLE_LAY_EGG, SoundCategory.BLOCKS, 0.3F, 0.9F + world.random.nextFloat() * 0.2F);
|
|
world.setTypeAndData(this.e.up(), (IBlockData) Blocks.TURTLE_EGG.getBlockData().set(BlockTurtleEgg.b, this.g.random.nextInt(4) + 1), 3);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
this.g.r(false);
|
|
this.g.s(false);
|
|
this.g.setLoveTicks(600);
|
|
@@ -532,7 +540,7 @@
|
|
--this.e;
|
|
return false;
|
|
} else {
|
|
- this.d = this.b.world.a(EntityTurtle.i.a, (EntityLiving) this.b);
|
|
+ this.d = this.b.world.a(this.a, (EntityLiving) this.b); // CraftBukkit - decompile error
|
|
return this.d == null ? false : this.a(this.d.getItemInMainHand()) || this.a(this.d.getItemInOffHand());
|
|
}
|
|
}
|