Hello,
In the last update, a new const variable has been added to be able to modify the number of cooking slots count.
But it has not been added everywhere.
In each screen, you see the line that has the bug in the FireplaceBase.c
It still using
for(int i = 0; i < 3; i++)
instead of using
for(int i = 0; i < DIRECT_COOKING_SLOT_COUNT; i++)