mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-01-31 05:00:34 +00:00
Count vertices without any attached lines as non-essential
This commit is contained in:
parent
eb28b2aa70
commit
44159ebbd4
1 changed files with 2 additions and 0 deletions
|
@ -1004,6 +1004,8 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
ICollection<Vertex> selected = General.Map.Map.GetSelectedVertices(true);
|
||||
foreach (Vertex v in selected)
|
||||
{
|
||||
if (v.Linedefs.Count == 0)
|
||||
counter++;
|
||||
if (v.Linedefs.Count == 2)
|
||||
{
|
||||
Linedef ld1 = General.GetByIndex(v.Linedefs, 0);
|
||||
|
|
Loading…
Reference in a new issue