Pouring water to turn off keeps consuming woodBug
pouring water to turn off furnace that still on, will keep consume wood but not burning the ore. what can i do to solve this?
Does this happen without Quick Smelt?

Works fine without Quick Smelt.

adding the following code in the cook() function seem to fix the issue

if (!Furnace.HasFlag(BaseEntity.Flags.On))
{
    StopCooking();
    return;
}