创建包含 nbt.tag.List 文件的 nbt 文件时出错

error creating nbt file that includes nbt.tag.List file

我正在创建一个 nbt 文件,其根目录有两个标签:

我做了一些测试并确定当我尝试将 tag_List 传递给文件时发生错误。

这是我的代码:

import nbtlib as nbt

class Structure(nbt.File):
    def __init__(Self, data_version, size):
        #super().__init__({"DataVersion":nbt.Int(data_version), "size":nbt.List(map(nbt.Int, size))})
        super().__init__({"DataVersion":nbt.Int(data_version), "size":nbt.List(map(nbt.Int, size))})


structure = Structure(data_version=1952, size=(0, 0, 0))
structure.save("prueba.nbt")

这是错误:

Traceback (most recent call last):
  File "D:\studios dante 2\MODULES\Games\structurenbt\module.py", line 10, in <module>
    structure.save("prueba.nbt")
  File "C:\Python38-32\lib\site-packages\nbtlib\nbt.py", line 132, in save
    self.write(buff, byteorder or self.byteorder)
  File "C:\Python38-32\lib\site-packages\nbtlib\tag.py", line 420, in write
    tag.write(buff, byteorder)
  File "C:\Python38-32\lib\site-packages\nbtlib\tag.py", line 365, in write
    write_numeric(BYTE, self.subtype.tag_id, buff, byteorder)
  File "C:\Python38-32\lib\site-packages\nbtlib\tag.py", line 84, in write_numeric
    buff.write(fmt[byteorder].pack(value))
struct.error: required argument is not an integer

有人可以帮我解决这个问题吗?我用的是python 3.8

我已经修好了,原来我的 nbtlib 已经过时了。我更新了它并且它有效!