Posted July 24, 201510 yr Hey guys, I was wondering where in the furnaces code does it consume a fuel item and set isBurning to true, I tried searching and searching but I think that I am overlooking something. Thanks! if(pain == 0) { gain = 0; }
July 24, 201510 yr It all happens in TileEntityFurnace#update(). if (!this.isBurning() && this.canSmelt()) { this.currentItemBurnTime = this.furnaceBurnTime = getItemBurnTime(this.furnaceItemStacks[1]); Consuming fuel item. There is no such field as "isBurning" - it is only a method that tells you that fuel is > 0. 1.7.10 is no longer supported by forge, you are on your own.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.