Electic furnace no start smelt

The problem in method StartCooking in custom component FurnaceController.

Fast fix is add in begin method StartCooking, but not have rate:

if(Furnace as ElectricOven != null)
{
Furnace.StartCooking();
return;
}

And if change this line in method Cook():

if (itemBurnable == null)

to:

if (itemBurnable == null && !Furnace.CanRunWithNoFuel)

we'll get rates. Fast Fix Done!

 

The problem in method StartCooking in custom component FurnaceController. Fast fix is add in begin method StartCooking, but not have rate: if(Furnace as ElectricOven != null) { Furnace.StartCooking(); return; }

where to add this at which line ?

anyone have the answer to the above question?  my powersmelt is also broken and i need a new plugin 

thanks a lot eduard, that file is beautiful <3

Thanks for that TurEduard.