diff --git a/src/TiledCS.csproj b/src/TiledCS.csproj index 97bb31f..3abfd2f 100644 --- a/src/TiledCS.csproj +++ b/src/TiledCS.csproj @@ -1,7 +1,7 @@ - 3.2.0 + 3.2.1 Ruben Labruyere Ruben Labruyere TiledCS diff --git a/src/TiledMap.cs b/src/TiledMap.cs index 173dd24..7ba2463 100644 --- a/src/TiledMap.cs +++ b/src/TiledMap.cs @@ -199,7 +199,7 @@ private TiledProperty[] ParseProperties(XmlNodeList nodeList) property.type = node.Attributes["type"]?.Value; property.value = node.Attributes["value"]?.Value; - if (property.value == null && node.InnerText != null) + if (property.value == null) { property.value = node.InnerText; }