diff --git a/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs b/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs index 53848c1a..8c238f80 100644 --- a/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs +++ b/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs @@ -36,7 +36,7 @@ public class FacadeCondensationRiskCommand : ISimulationCommand public virtual FileSettings EPWFile { get; set; } = new FileSettings(); [Description("The list of thresholds to use. If no values are provided, default values of [10,7,4,1,-2,-5] will be used.")] - public virtual List Thresholds { get; set; } = new List(); + public virtual List Thresholds { get; set; } = new List{10, 7, 4, 1, -2, -5}; [Description("Set to true to return a heatmap, or set to false to return a chart and table.")] public virtual bool Heatmap { get; set; } = true;