Fix minor bug with fuel consumption from furnaces

This commit is contained in:
Drew DeVault 2015-10-05 08:36:32 -04:00
parent 05cffcf631
commit 98b15c3434

View File

@ -234,7 +234,6 @@ namespace TrueCraft.Core.Logic.Blocks
if (state.CookTime == -1 && input != null && (outputStack.Empty || outputStack.CanMerge(input.SmeltingOutput)))
{
state.CookTime = 0;
state.Items[FurnaceWindow.FuelIndex].Count--;
SetState(world, coords, state);
}
var subject = new FurnaceEventSubject();