Update CraftBukkit to Minecraft 1.4(.2).

This commit is contained in:
Travis Watkins
2012-10-24 22:53:23 -05:00
committed by EvilSeph
parent b9a72531b6
commit 60819c6693
237 changed files with 10104 additions and 4863 deletions

View File

@@ -0,0 +1,26 @@
package org.bukkit.craftbukkit.entity;
import net.minecraft.server.EntityWitch;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.entity.Witch;
import org.bukkit.entity.EntityType;
public class CraftWitch extends CraftMonster implements Witch {
public CraftWitch(CraftServer server, EntityWitch entity) {
super(server, entity);
}
@Override
public EntityWitch getHandle() {
return (EntityWitch) entity;
}
@Override
public String toString() {
return "CraftWitch";
}
public EntityType getType() {
return EntityType.WITCH;
}
}