Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBoneJarmer committed Aug 8, 2022
1 parent eb4064d commit b9aea4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TiledCS.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>3.2.0</Version>
<Version>3.2.1</Version>
<Authors>Ruben Labruyere</Authors>
<Company>Ruben Labruyere</Company>
<PackageId>TiledCS</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion src/TiledMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit b9aea4f

Please sign in to comment.