0

Merge branch 'master' into minecraft113

This commit is contained in:
Aaron Griffith
2019-02-19 14:28:34 -05:00
7 changed files with 66 additions and 16 deletions

View File

@@ -150,7 +150,7 @@ class NBTFileReader(object):
# Read the string
string = self._file.read(length)
# decode it and return
return string.decode("UTF-8")
return string.decode("UTF-8", 'replace')
def _read_tag_list(self):
tagid = self._read_tag_byte()