its eclipse, minecraft runs fine but now i got a new problem i changed EnumCreatureType.creature to Mob and now minecraft crashes heres my code if you want to help out
///////////////////////////////////EntityTest\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
package net.minecraft.src;
import java.util.Random;
public class EntityTest extends EntityMob
{
public EntityTest(World world)
{
super(world);
texture = "/Entity/Guy.png";
moveSpeed = 0.5F;
}
public int getMaxHealth()
{
return 20;
}
protected String getLivingSound()
{
return"mob.villager.default";
}
protected String getHurtSound()
{
return"mob.villager.defaulthurt";
}
protected String getDeathSound()
{
return"mob.villager.defaultdeath";
}
protected int getDropItemId()
{
return Item.ingotIron.shiftedIndex;
}
protected boolean canDespawn()
{
return false;
}
}
/////////////////////////////////////////////////////////////mod_Test\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
package net.minecraft.src;
import java.util.Map;
public class mod_Test extends BaseMod
{
public void load()
{
ModLoader.registerEntityID(EntityTest.class, "Test",
ModLoader.getUniqueEntityId());
ModLoader.addSpawn(EntityTest.class, 1, 1, 5, EnumCreatureType.monster);
}
public void addRenderer(Map map)
{
map.put(EntityTest.class, new RenderBiped(new ModelBiped(), 0.5F));
}
public String getVersion()
{
return "1.3.2";
}
}