From e6e916020cc804d47be6d92f5c7c38d7632030b5 Mon Sep 17 00:00:00 2001 From: Abdulmujeeb Raji Date: Wed, 13 Nov 2024 12:10:05 +0000 Subject: [PATCH] fix: replace torches with coal in geltana recipe --- Content/Items/Weapons/Geltana.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content/Items/Weapons/Geltana.cs b/Content/Items/Weapons/Geltana.cs index 1341a41..19d35be 100644 --- a/Content/Items/Weapons/Geltana.cs +++ b/Content/Items/Weapons/Geltana.cs @@ -36,8 +36,7 @@ namespace continuity.Content.Items.Weapons Recipe recipe = Recipe.Create(ModContent.ItemType()); recipe.AddIngredient(ItemID.Katana, 1); recipe.AddIngredient(ModContent.ItemType(), 8); - // TODO(midnadimple): Replace torch with coal when we implement that - recipe.AddIngredient(ItemID.Torch, 20); + recipe.AddIngredient(ItemID.Coal, 10); recipe.AddTile(TileID.Solidifier); recipe.AddTile(TileID.Anvils); recipe.Register();