diff --git a/Source/Plugins/TagExplorer/NodeInfo.cs b/Source/Plugins/TagExplorer/NodeInfo.cs
index e0174fe5455b8cd0c683d45b44989b30ce2e3347..c67267f75d542d6ad2763d9278e15d0cb51c1e7b 100644
--- a/Source/Plugins/TagExplorer/NodeInfo.cs
+++ b/Source/Plugins/TagExplorer/NodeInfo.cs
@@ -36,7 +36,7 @@ namespace CodeImp.DoomBuilder.TagExplorer
 
         public NodeInfo(Sector s) {
             type = NodeInfoType.SECTOR;
-            index = s.FixedIndex;
+            index = s.Index;
             action = s.Effect;
             tag = s.Tag;
         }
@@ -133,7 +133,7 @@ namespace CodeImp.DoomBuilder.TagExplorer
                 comment = s.Fields["comment"].Value.ToString();
                 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) {