Skip to content

Commit

Permalink
v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevertus committed Apr 3, 2021
1 parent 4067ad4 commit b1a6bff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/external/predicates/entity/properties.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ class Properties extends Tag {

if (level != null) player['level'] = level!.getJson();
if (gamemode != null) player['gamemode'] = gamemode.toString();
if (stats != null) player['stats'] = stats!.map((s) => s.getJson()).toList();
if (stats != null) {
player['stats'] = stats!.map((s) => s.getJson()).toList();
}
if (recipes != null) player['recipes'] = recipes;
if (advancements != null) player['advancements'] = advancements;

Expand Down

0 comments on commit b1a6bff

Please sign in to comment.