diff options
Diffstat (limited to 'src/exporter.py')
-rw-r--r-- | src/exporter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exporter.py b/src/exporter.py index 23484c3..f6798c7 100644 --- a/src/exporter.py +++ b/src/exporter.py @@ -421,7 +421,7 @@ class KPMapExporter: except ValueError: convertedWorldID = ord(world.worldID) - ord('A') + 10 - data += struct.pack('>BBBB BBBB BBBB BBBB BBBB BBBB Bbb BBB BB', + data += struct.pack('>BBBB BBBB BBBB BBBB BBBB BBBB hbb BBB B', fst1[0],fst1[1],fst1[2],fst1[3], fst2[0],fst2[1],fst2[2],fst2[3], fsh1[0],fsh1[1],fsh1[2],fsh1[3], @@ -431,7 +431,7 @@ class KPMapExporter: htf[0],htf[1],htf[2], world.uniqueKey, world.musicTrackID, convertedWorldID, - 0, 0 + 0 ) # now that we're almost done... pack the strings |