Correct mistake in torch crafting recipe

The output is four torches, not one
This commit is contained in:
Drew DeVault 2015-04-16 15:53:22 -06:00
parent 06a928edbf
commit f84538b9c6

View File

@ -77,7 +77,7 @@ namespace TrueCraft.Core.Logic.Blocks
{
get
{
return new ItemStack(TorchBlock.BlockID, 1);
return new ItemStack(TorchBlock.BlockID, 4);
}
}