Posted March 3, 201312 yr Hey guys, my smelting recipes aren't working. Can you tell me why? public void smeltingRecipes(){ GameRegistry.addSmelting(this.AquamarineGemID, new ItemStack(AquamarineDust), 1F); GameRegistry.addSmelting(this.CitrineGemID, new ItemStack(CitrineDust), 1F); GameRegistry.addSmelting(this.PlutoniumGemID, new ItemStack(PlutoniumDust), 1F); GameRegistry.addSmelting(this.PearlID, new ItemStack(PearlDust), 1F); GameRegistry.addSmelting(this.SuperGemID, new ItemStack(EnderDust), 1F); }
March 3, 201312 yr Try instead of GameRegistry.addSmelting(this.AquamarineGemID, new ItemStack(AquamarineDust), 1F); this: GameRegistry.addSmelting(AquamarineGemID.itemID, new ItemStack(AquamarineDust), 1F);
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.