diff --git a/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs index 796d3363..9d441422 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs @@ -440,7 +440,7 @@ public class HideoutHelper( var production = pmcData.Hideout.Production[prodId]; // Some items NEED power to craft (e.g. DSP) - if (production.needFuelForAllProductionTime == true && hideoutProperties.IsGeneratorOn) + if (production.needFuelForAllProductionTime.GetValueOrDefault() && hideoutProperties.IsGeneratorOn) { production.Progress += timeElapsed; }