TagExplorer: incorrect sector index was used.

This commit is contained in:
MaxED 2013-06-19 11:36:20 +00:00
parent 16cc4d8a8d
commit 8ebd348e44

View file

@ -36,7 +36,7 @@ namespace CodeImp.DoomBuilder.TagExplorer
public NodeInfo(Sector s) { public NodeInfo(Sector s) {
type = NodeInfoType.SECTOR; type = NodeInfoType.SECTOR;
index = s.FixedIndex; index = s.Index;
action = s.Effect; action = s.Effect;
tag = s.Tag; tag = s.Tag;
} }
@ -133,7 +133,7 @@ namespace CodeImp.DoomBuilder.TagExplorer
comment = s.Fields["comment"].Value.ToString(); comment = s.Fields["comment"].Value.ToString();
isDefaultName = false; isDefaultName = false;
} }
return combineName(comment.Length == 0 ? NodeInfoDefaultName.SECTOR : comment, s.Tag, s.Effect, s.FixedIndex, sortMode, isDefaultName); return combineName(comment.Length == 0 ? NodeInfoDefaultName.SECTOR : comment, s.Tag, s.Effect, s.Index, sortMode, isDefaultName);
} }
private string getLinedefName(Linedef l, ref string comment, string sortMode) { private string getLinedefName(Linedef l, ref string comment, string sortMode) {