Fix balance of CraftBukkit start/end.

This commit is contained in:
Erik Broes
2012-01-12 19:43:34 +01:00
parent 897551e39e
commit 7d0e739f96
9 changed files with 11 additions and 13 deletions

View File

@@ -513,7 +513,7 @@ public class EntityMinecart extends Entity implements IInventory {
this.motX *= this.derailedX;
this.motY *= this.derailedY;
this.motZ *= this.derailedZ;
// CraftBukkit start
// CraftBukkit end
}
this.move(this.motX, this.motY, this.motZ);
@@ -522,7 +522,7 @@ public class EntityMinecart extends Entity implements IInventory {
this.motX *= this.flyingX;
this.motY *= this.flyingY;
this.motZ *= this.flyingZ;
// CraftBukkit start
// CraftBukkit end
}
}