Make onomatopoeia work again

master
Hybrid Dog 2017-11-26 12:32:26 +01:00
parent 91b74fb782
commit 9e8609c007
1 changed files with 3 additions and 0 deletions

3
map.py
View File

@ -38,6 +38,9 @@ class Map(object):
lighting_expired = ((ord(flags) & 4) != 0)
generated = ((ord(flags) & 8) != 0)
if version >= 27:
lighting_complete = readU16(f)
if version >= 22:
content_width = readU8(f)
params_width = readU8(f)