From 422c605bc7b167694c3d29bbcd40d60c79e4d2ed Mon Sep 17 00:00:00 2001 From: MaxED Date: Wed, 10 Sep 2014 16:56:29 +0000 Subject: [PATCH] Linedef Edit Form, UDMF: missing activation flags warning was shown even when action was 0... --- Source/Core/Windows/LinedefEditForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Windows/LinedefEditForm.cs b/Source/Core/Windows/LinedefEditForm.cs index e0bd6995..a460977a 100644 --- a/Source/Core/Windows/LinedefEditForm.cs +++ b/Source/Core/Windows/LinedefEditForm.cs @@ -701,7 +701,7 @@ namespace CodeImp.DoomBuilder.Windows } // Check if we have at least one activation flag when there's an action in UDMF map format (mxd) - if (General.Map.UDMF && !action.Empty) + if (General.Map.UDMF && !action.Empty && action.Value != 0) { bool haveactivationflag = false; foreach (CheckBox c in udmfactivates.Checkboxes)