tModLoader I need help with this...

Zitho

Official Terrarian
ok so im making a mod and i made this pickaxe and i need it to be crafted at a Ancient Manipulator, but it wont work here is the code:

Code:
ModRecipe recipe = new ModRecipe(mod);
            recipe.AddIngredient(ItemID.SolarFlarePickaxe, 1);
            recipe.AddIngredient(ItemID.VortexPickaxe, 1);
            recipe.AddIngredient(ItemID.NebulaPickaxe, 1);
            recipe.AddIngredient(ItemID.StardustPickaxe, 1);
            recipe.AddTile(TileID.AncientManipulator);
            recipe.SetResult(this);
            recipe.AddRecipe();

Please help me, Thank You!!

-Also it says
Terraria.ID.TileID' does not contain a definition for 'AncientManipulator'
 
Back
Top Bottom