Don't allow placing CONTENT_IGNORE with Map::setNode() because it is never useful and is only caused by bugs.

master
Perttu Ahola 2011-11-25 17:42:41 +02:00
parent 6153a2fb10
commit 74770ab718
1 changed files with 9 additions and 0 deletions

View File

@ -208,6 +208,15 @@ void Map::setNode(v3s16 p, MapNode & n)
v3s16 blockpos = getNodeBlockPos(p);
MapBlock *block = getBlockNoCreate(blockpos);
v3s16 relpos = p - blockpos*MAP_BLOCKSIZE;
// Never allow placing CONTENT_IGNORE, it fucks up stuff
if(n.getContent() == CONTENT_IGNORE){
errorstream<<"Map::setNode(): Not allowing to place CONTENT_IGNORE"
<<" while trying to replace \""
<<m_gamedef->ndef()->get(block->getNodeNoCheck(relpos)).name
<<"\" at "<<PP(p)<<" (block "<<PP(blockpos)<<")"<<std::endl;
debug_stacks_print_to(errorstream);
return;
}
block->setNodeNoCheck(relpos, n);
}