From 7ce4ace2d950e8143a9ee679720bf5d96981fca1 Mon Sep 17 00:00:00 2001 From: Alexander Argentakis <38327951+MFDGaming@users.noreply.github.com> Date: Fri, 19 Mar 2021 08:26:21 +0200 Subject: [PATCH] Update PNBT.py --- PNBT.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PNBT.py b/PNBT.py index e24c067..8ac55b5 100644 --- a/PNBT.py +++ b/PNBT.py @@ -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"]: