@@ -1,6 +1,6 @@
|
||||
--- a/net/minecraft/server/EntityChicken.java
|
||||
+++ b/net/minecraft/server/EntityChicken.java
|
||||
@@ -43,6 +43,11 @@
|
||||
@@ -40,6 +40,11 @@
|
||||
|
||||
@Override
|
||||
public void movementTick() {
|
||||
@@ -10,12 +10,12 @@
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
super.movementTick();
|
||||
this.bz = this.bw;
|
||||
this.by = this.bx;
|
||||
@@ -62,7 +67,9 @@
|
||||
this.bw += this.bA * 2.0F;
|
||||
this.by = this.bv;
|
||||
this.bx = this.bw;
|
||||
@@ -59,7 +64,9 @@
|
||||
this.bv += this.bz * 2.0F;
|
||||
if (!this.world.isClientSide && this.isAlive() && !this.isBaby() && !this.isChickenJockey() && --this.eggLayTime <= 0) {
|
||||
this.a(SoundEffects.ENTITY_CHICKEN_EGG, 1.0F, (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F);
|
||||
this.playSound(SoundEffects.ENTITY_CHICKEN_EGG, 1.0F, (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F);
|
||||
+ this.forceDrops = true; // CraftBukkit
|
||||
this.a((IMaterial) Items.EGG);
|
||||
+ this.forceDrops = false; // CraftBukkit
|
||||
|
||||
Reference in New Issue
Block a user