Reworked getEntity; Hi instanceof, bay 16 classes

This commit is contained in:
Erik Broes
2011-01-30 16:15:17 +01:00
parent 75ba9a0f25
commit b2a0c5a2ae
32 changed files with 85 additions and 1797 deletions

11
src/main/java/net/minecraft/server/EntityArrow.java Normal file → Executable file
View File

@@ -25,24 +25,17 @@ public class EntityArrow extends Entity {
public EntityArrow(World world) {
super(world);
this.a(0.5F, 0.5F);
// CraftBukkit start
CraftServer server = ((WorldServer) this.world).getServer();
this.bukkitEntity = new CraftArrow(server, this);
// CraftBukkit end
}
public EntityArrow(World world, double d0, double d1, double d2) {
this(world); // CraftBukkit super->this so we assign the entity
super(world);
this.a(0.5F, 0.5F);
this.a(d0, d1, d2);
this.height = 0.0F;
}
public EntityArrow(World world, EntityLiving entityliving) {
this(world); // CraftBukkit super->this so we assign the entity
super(world);
this.b = entityliving;
this.a(0.5F, 0.5F);
this.c(entityliving.locX, entityliving.locY + (double) entityliving.w(), entityliving.locZ, entityliving.yaw, entityliving.pitch);