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
1 changed files with 1 additions and 1 deletions

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);