created getBukkitEntity() in minecraft.server.Entity

This returns a protected field that is set in the constructor of each
minecraft.server.Entity to a new CraftEntity of some specific type.
This commit is contained in:
Andrew Ardill
2011-01-17 07:03:15 +08:00
committed by Dinner Bone
parent 95cb03b50e
commit 2de3e2e7e4
13 changed files with 72 additions and 4 deletions

View File

@@ -7,9 +7,7 @@ import java.util.Random;
import org.bukkit.craftbukkit.entity.CraftArrow;
import org.bukkit.craftbukkit.entity.CraftEntity;
import org.bukkit.craftbukkit.entity.CraftLivingEntity;
import org.bukkit.craftbukkit.entity.CraftPlayer;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.event.entity.EntityDamageByBlockEvent;
import org.bukkit.event.entity.EntityDamageByProjectileEvent;
import org.bukkit.event.entity.EntityDamageEvent;
//CraftBukkit end
@@ -25,7 +23,7 @@ public class EntityArrow extends Entity {
public EntityLiving b;
private int al;
private int am;
public EntityArrow(World world) {
super(world);
c = -1;
@@ -36,6 +34,11 @@ public class EntityArrow extends Entity {
a = 0;
am = 0;
a(0.5F, 0.5F);
//CraftBukkit start
CraftServer server = ((WorldServer) this.l).getServer();
this.bukkitEntity = new CraftArrow(server, this);
//CraftBukkit end
}
public EntityArrow(World world, double d1, double d2, double d3) {