From f84538b9c64e3d6323402eec91f44e63661db519 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 16 Apr 2015 15:53:22 -0600 Subject: [PATCH] Correct mistake in torch crafting recipe The output is four torches, not one --- TrueCraft.Core/Logic/Blocks/TorchBlock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TrueCraft.Core/Logic/Blocks/TorchBlock.cs b/TrueCraft.Core/Logic/Blocks/TorchBlock.cs index 68c5a20..3234bd7 100644 --- a/TrueCraft.Core/Logic/Blocks/TorchBlock.cs +++ b/TrueCraft.Core/Logic/Blocks/TorchBlock.cs @@ -77,7 +77,7 @@ namespace TrueCraft.Core.Logic.Blocks { get { - return new ItemStack(TorchBlock.BlockID, 1); + return new ItemStack(TorchBlock.BlockID, 4); } }