Fixed CraftWorld.spawnArrow() not setting X, Y, Z positions correctly.

This commit is contained in:
sk89q 2011-01-10 14:13:44 -08:00
parent 5993b21b88
commit dda7ca0059

View file

@ -139,7 +139,7 @@ public class CraftWorld implements World {
public Arrow spawnArrow(Location loc, Vector velocity, float speed, public Arrow spawnArrow(Location loc, Vector velocity, float speed,
float spread) { float spread) {
EntityArrow arrow = new EntityArrow(world); EntityArrow arrow = new EntityArrow(world);
arrow.c(loc.getX(), loc.getY(), loc.getZ()); arrow.c(loc.getX(), loc.getY(), loc.getZ(), 0, 0);
world.a(arrow); world.a(arrow);
arrow.a(velocity.getX(), velocity.getY(), velocity.getZ(), speed, spread); arrow.a(velocity.getX(), velocity.getY(), velocity.getZ(), speed, spread);
return new CraftArrow(world.getServer(), arrow); return new CraftArrow(world.getServer(), arrow);