diff --git a/Source/Core/Config/GeneralizedOption.cs b/Source/Core/Config/GeneralizedOption.cs index 5fd3ed6..1b621b3 100644 --- a/Source/Core/Config/GeneralizedOption.cs +++ b/Source/Core/Config/GeneralizedOption.cs @@ -92,11 +92,11 @@ namespace CodeImp.DoomBuilder.Config bitstep = bits[1].Index; // Check the rest of the values - for(int i = 1; i < bits.Count; i++) - { - if(bits[i].Index - bits[i - 1].Index != bitstep) - General.ErrorLogger.Add(ErrorType.Warning, "Structure \"" + fullpath + "." + name + "\" contains options with mixed increments (option \"" + bits[i].Title + "\" increment (" + (bits[i - 1].Index - bits[i].Index) + ") doesn't match the structure increment (" + bitstep + "))."); - } + //for(int i = 1; i < bits.Count; i++) + //{ + // if(bits[i].Index - bits[i - 1].Index != bitstep) + // General.ErrorLogger.Add(ErrorType.Warning, "Structure \"" + fullpath + "." + name + "\" contains options with mixed increments (option \"" + bits[i].Title + "\" increment (" + (bits[i - 1].Index - bits[i].Index) + ") doesn't match the structure increment (" + bitstep + "))."); + //} } // We have no destructor