Advertisement
Guest User

Untitled

a guest
Aug 19th, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. EntityWitherSkeleton.java
  2.  
  3. import net.minecraft.entity.monster.EntitySkeleton;
  4. import net.minecraft.world.World;
  5.  
  6. public class EntityWitherSkeleton extends EntitySkeleton {
  7.  
  8. public EntityWitherSkeleton(World p_i1741_1_) {
  9. super(p_i1741_1_);
  10. this.setSkeletonType(1);
  11. }
  12. }
  13. -------------------------
  14.  
  15. EntityRegistry.addSpawn(EntityWitherSkeleton.class, 100, 10, 100, EnumCreatureType.monster, BiomeGenBase.forest);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement