1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-16 18:31:53 +01:00

Fixed compile errors

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
CraftBukkit/Spigot 2011-01-03 16:37:08 +00:00
parent 46bdde7180
commit 9b1f8245df
2 changed files with 0 additions and 3 deletions
paper-server/src/main/java/org/bukkit/craftbukkit

View file

@ -45,7 +45,6 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
return "CraftLivingEntity{" + "id=" + getEntityID() + '}';
}
@Override
public Egg throwEgg() {
net.minecraft.server.World world = ((CraftWorld)getWorld()).getHandle();
EntityEgg egg = new EntityEgg(world, entity);
@ -53,7 +52,6 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
return new CraftEgg(server, egg);
}
@Override
public Snowball throwSnowball() {
net.minecraft.server.World world = ((CraftWorld)getWorld()).getHandle();
EntitySnowball snowball = new EntitySnowball(world, entity);

View file

@ -38,7 +38,6 @@ public class CraftMinecart extends CraftVehicle implements Minecart {
minecart = entity;
}
@Override
public Vector getVelocity() {
return new Vector(minecart.s, minecart.t, minecart.u);
}