diff options
Diffstat (limited to 'src/mapblock.cpp')
-rw-r--r-- | src/mapblock.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mapblock.cpp b/src/mapblock.cpp index 377e28435..38c081eec 100644 --- a/src/mapblock.cpp +++ b/src/mapblock.cpp @@ -1936,6 +1936,12 @@ void MapBlock::deSerialize(std::istream &is, u8 version) if(!ser_ver_supported(version)) throw VersionMismatchException("ERROR: MapBlock format not supported"); + // These have no lighting info + if(version <= 1) + { + setLightingExpired(true); + } + // These have no compression if(version <= 3 || version == 5 || version == 6) { |