From b9aea4fd92f4608e90bf30768477a7e21d48f3aa Mon Sep 17 00:00:00 2001 From: Ruben Labruyere Date: Mon, 8 Aug 2022 15:47:02 +0200 Subject: [PATCH] Updated version --- src/TiledCS.csproj | 2 +- src/TiledMap.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }