Closed Lutz89 closed 5 months ago
Hey @AristurtleDev 👋
There is an error in the implementation of the TryGetValue method in the TiledMapProperties class, which leads to a NullpointerException.
The assignment of the return value must be changed from value = result ? null : tmpVal.Value; To value = result ? tmpVal.Value : null;
value = result ? null : tmpVal.Value;
value = result ? tmpVal.Value : null;
Cheers, Lutz
Thanks @Lutz89
Resolved in #903
Hey @AristurtleDev 👋
There is an error in the implementation of the TryGetValue method in the TiledMapProperties class, which leads to a NullpointerException.
The assignment of the return value must be changed from
value = result ? null : tmpVal.Value;
Tovalue = result ? tmpVal.Value : null;
Cheers, Lutz