Clean up accessory code.

This commit is contained in:
Big Duckie
2022-07-05 16:17:11 -06:00
parent eb2cb27e79
commit 3cb03f994a
11 changed files with 111 additions and 118 deletions
+5 -5
View File
@@ -43,10 +43,10 @@ public class ValkyrieWings : ModItem
public override void AddRecipes()
{
Recipe val = CreateRecipe();
val.AddIngredient(ItemID.HallowedBar, 10);
val.AddIngredient(ItemID.SoulofFlight, 20);
val.AddTile(TileID.MythrilAnvil);
val.Register();
CreateRecipe()
.AddIngredient(ItemID.HallowedBar, 10)
.AddIngredient(ItemID.SoulofFlight, 20)
.AddTile(TileID.MythrilAnvil)
.Register();
}
}