1
0
mirror of https://github.com/minetest/minetest.git synced 2025-07-04 17:00:23 +02:00

mapblock::deSerialize: version cannot be 23 and 24

This commit is contained in:
Loic Blot
2015-01-12 12:28:00 +01:00
parent fc5ab80686
commit 32ca9c8b38

View File

@ -692,7 +692,7 @@ void MapBlock::deSerialize(std::istream &is, u8 version, bool disk)
// Read unused zero
readU8(is);
}
if(version == 24){
else if(version == 24){
TRACESTREAM(<<"MapBlock::deSerialize "<<PP(getPos())
<<": Node timers (ver==24)"<<std::endl);
m_node_timers.deSerialize(is, version);