mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
Linedef Edit Form: disabled missing activation flags warning.
This commit is contained in:
parent
d916e54686
commit
814bf4704b
1 changed files with 3 additions and 2 deletions
|
@ -701,7 +701,8 @@ 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.Value != 0)
|
||||
// Too obnoxious...
|
||||
/*if (General.Map.UDMF && action.Value != 0)
|
||||
{
|
||||
bool haveactivationflag = false;
|
||||
foreach (CheckBox c in udmfactivates.Checkboxes)
|
||||
|
@ -716,7 +717,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
if (!haveactivationflag &&
|
||||
General.ShowWarningMessage("You are setting an action without any activation flags.\nIs that OK?", MessageBoxButtons.YesNo) == DialogResult.No)
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
|
||||
//mxd
|
||||
bool hasAcs = !action.Empty && Array.IndexOf(GZBuilder.GZGeneral.ACS_SPECIALS, action.Value) != -1;
|
||||
|
|
Loading…
Reference in a new issue