Skip to content

Commit

Permalink
Update PNBT.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MFDGaming authored Mar 19, 2021
1 parent abdfdaf commit 7ce4ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PNBT.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def read_type(nbt_type):
tag_value = []
for i in range(0, list_item_count):
tag_value.append(read_type(list_type))
return tag_value
return {"type": list_type, "value": tag_value}
elif nbt_type == tag["compound"]:
return read_compound_tag()
elif nbt_type == tag["int_array"]:
Expand Down

0 comments on commit 7ce4ace

Please sign in to comment.