mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 15:00:13 +01:00
Fixed compile errors
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
46bdde7180
commit
9b1f8245df
2 changed files with 0 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue