mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-06-01 17:32:15 +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)
|
// 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;
|
bool haveactivationflag = false;
|
||||||
foreach (CheckBox c in udmfactivates.Checkboxes)
|
foreach (CheckBox c in udmfactivates.Checkboxes)
|
||||||
|
@ -716,7 +717,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
if (!haveactivationflag &&
|
if (!haveactivationflag &&
|
||||||
General.ShowWarningMessage("You are setting an action without any activation flags.\nIs that OK?", MessageBoxButtons.YesNo) == DialogResult.No)
|
General.ShowWarningMessage("You are setting an action without any activation flags.\nIs that OK?", MessageBoxButtons.YesNo) == DialogResult.No)
|
||||||
return;
|
return;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
//mxd
|
//mxd
|
||||||
bool hasAcs = !action.Empty && Array.IndexOf(GZBuilder.GZGeneral.ACS_SPECIALS, action.Value) != -1;
|
bool hasAcs = !action.Empty && Array.IndexOf(GZBuilder.GZGeneral.ACS_SPECIALS, action.Value) != -1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue