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;
}
Electic furnace no start smelt
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
Here is the corrected version: https://drive.google.com/file/d/1nUACteKOUH_GPNJcihT4_qe-bOYVKNZL/view?usp=sharing
thanks a lot eduard, that file is beautiful <3
Thanks for that TurEduard.