From bcbe994280de0bf47502ce87023d1046db5033b4 Mon Sep 17 00:00:00 2001 From: codeimp Date: Sun, 26 Apr 2009 07:44:31 +0000 Subject: [PATCH] @ Removed unneeded warning for trivial lumps that couldn't be found when opening a map --- Source/Core/General/MapManager.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Core/General/MapManager.cs b/Source/Core/General/MapManager.cs index 528e8d0d..6b54cb28 100644 --- a/Source/Core/General/MapManager.cs +++ b/Source/Core/General/MapManager.cs @@ -972,7 +972,10 @@ namespace CodeImp.DoomBuilder { // We don't want to bother the user with this. There are a lot of lumps in // the game configs that are trivial and don't need to be found. - //General.ErrorLogger.Add(ErrorType.Warning, ml.Key.ToString() + " should be read but was not found in the WAD file"); + if(lumprequired) + { + General.ErrorLogger.Add(ErrorType.Warning, ml.Key.ToString() + " (required lump) should be read but was not found in the WAD file"); + } } } }