From 27d5833c30f383887d004692eba91a388e6d5b05 Mon Sep 17 00:00:00 2001 From: Carmine Date: Wed, 3 Jan 2018 21:54:32 +0100 Subject: [PATCH] GtxdFile: hotfix for Item XmlNode --- GameFiles/FileTypes/GtxdFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameFiles/FileTypes/GtxdFile.cs b/GameFiles/FileTypes/GtxdFile.cs index 96735b8..f3260cc 100644 --- a/GameFiles/FileTypes/GtxdFile.cs +++ b/GameFiles/FileTypes/GtxdFile.cs @@ -136,7 +136,7 @@ namespace CodeWalker.GameFiles { XmlDocument xmldoc = new XmlDocument(); xmldoc.LoadXml(xml); - XmlNodeList items = xmldoc.SelectNodes("CMapParentTxds/txdRelationships/item"); + XmlNodeList items = xmldoc.SelectNodes("CMapParentTxds/txdRelationships/Item"); CMapParentTxds = new Dictionary(); for (int i = 0; i < items.Count; i++)