Please add support to properly calculate fuel for 2x, 5x, etc. servers.
I've currently added/updated the following which is hardcoded for my 2x server.
I've currently added/updated the following which is hardcoded for my 2x server.
public OvenInfo GetOvenInfo(BaseOven oven)
{
...
float speedMultiplierGlobal = 2.0f;
result.FuelNeeded = neededFuel;
result.ETA = longestStack.Value/speedMultiplierGlobal;
...
}