I am not sure how many of you know anything about minecraft and their classes but hopefully someone can help.
The error I am recieving is in this line of code.
EntityList.entityEggs.put(Integer.valueOf(id), new EntityEggsInfo(bkEggColor, fgEggColor));
The error I am getting is "EntityEggsInfo cannot be resolved to a type"
I have imported all needed classes and everything, haven't seen a single error other than this one.
--- Update ---
Full code below
---------------
private void registerEntity(Class<ModelHerobrineMob> entityClass, String entityName, int bkEggColor, int fgEggColor) { int id = EntityRegistry.findGlobalUniqueEntityId(); EntityRegistry.registerGlobalEntityID(entityClass, entityName, id); EntityList.entityEggs.put(Integer.valueOf(id), new EntityEggsInfo(bkEggColor, fgEggColor)); } public void addSpawn(Class<ModelHerobrineMob> entityClass, int spawnProb, int min, int max, BiomeGenBase[] biomes) { if (spawnProb > 0) { EntityRegistry.addSpawn(entityClass, spawnProb, min, max, EnumCreatureType.creature, biomes); } } @EventHandler public void load(FMLInitializationEvent event) { proxy.registerRenderInformation(); }