Skip to content

Commit

Permalink
Fix the Nether Furnaces not doubling the burn time of fuel. #395
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbegt committed Aug 29, 2017
1 parent 8082df8 commit 81f87a4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -229,7 +229,7 @@ public void update()
{
if (!this.isBurning() && this.canSmelt())
{
this.furnaceBurnTime = getItemBurnTime(itemstack);
this.furnaceBurnTime = getItemBurnTime(itemstack) * 2;
this.currentItemBurnTime = this.furnaceBurnTime;

if (this.isBurning())
Expand Down

0 comments on commit 81f87a4

Please sign in to comment.