diff --git a/io_mesh_w3d/w3d/structs/compressed_animation.py b/io_mesh_w3d/w3d/structs/compressed_animation.py index 996b2a4a..2024ef4e 100644 --- a/io_mesh_w3d/w3d/structs/compressed_animation.py +++ b/io_mesh_w3d/w3d/structs/compressed_animation.py @@ -43,7 +43,7 @@ def size(include_head=True): return const_size(44, include_head) def write(self, io_stream): - write_chunk_head(W3D_CHUNK_COMPRESSED_ANIMATION_HEADER, io_stream, self.size(False)) # 16 + write_chunk_head(W3D_CHUNK_COMPRESSED_ANIMATION_HEADER, io_stream, self.size(False)) self.version.write(io_stream) write_fixed_string(self.name, io_stream) write_fixed_string(self.hierarchy_name, io_stream)