Changing burn time then reloading the world stops the furnace from working.
clarence112 opened this issue ยท 3 comments
-Change burn time (25 in my case)
-Works as expected
-Save and quit to title
-Open world
-Furnace no longer works
Starts working again when undoing the change and reloading the world
I have also encountered this problem. This seems to be a behavior designed by developers.
Only recipes with CookingTime less than or equal to the burn time will be selected.
.filter(recipe -> recipe instanceof SmeltingRecipe && ((SmeltingRecipe)recipe).getCookingTime() <= JumboFurnace.get().serverConfig.jumboFurnaceCookTime().get())
I don't think this is a good design, but it's not a bug.