diff --git a/Source/Core/Config/GeneralizedOption.cs b/Source/Core/Config/GeneralizedOption.cs
index 5fd3ed672b362ad264a84e084263164c0bb85560..1b621b356802f3ebce22af4b13b521d3b0a8fcfb 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