Hi there, 
  
i have a little private Server and i want to give tungsten ore a little use: Smelting Tungsten gives 1 diamond... 
  
Minecraft is starting but in game, when i place tungsten in a furnace nothing happens. 
  
Here the sourcecode, 
  
 
	public void load(FMLInitializationEvent event)
	{
		proxy.registerRenders();
		//Variablen
		int TungstenOre = OreDictionary.getOreID("oreTungsten");
		//Smelting Recipes
		GameRegistry.addSmelting(TungstenOre, new ItemStack(Item.diamond), 2.0F);
	}
 
  
Am I doing something wrong?