summaryrefslogtreecommitdiff
path: root/src/mapblock.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-04-11 16:58:49 +0300
committerPerttu Ahola <celeron55@gmail.com>2011-04-11 16:58:49 +0300
commit50a8087684cb9cdee033053c01a6e51eb516565b (patch)
tree2256bfce707cf753ce91869bfa113b074d6e6f06 /src/mapblock.cpp
parentf5f15e38a592b714e024821096348ad91673762d (diff)
downloadminetest-50a8087684cb9cdee033053c01a6e51eb516565b.tar.gz
minetest-50a8087684cb9cdee033053c01a6e51eb516565b.tar.bz2
minetest-50a8087684cb9cdee033053c01a6e51eb516565b.zip
support for format 0 and 1 maps
Diffstat (limited to 'src/mapblock.cpp')
-rw-r--r--src/mapblock.cpp6
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)
{