X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fmap.cpp;h=f1911d1a78c7d64d485c8a3bc50de61ecc237335;hb=82a2e02323615473fc3039508b4c4529591e27d9;hp=ba429f877b5af2b6632023ea678efd5dbb833a68;hpb=2f3c96b38d99db1d8ad6f4e07537220a9b31adc5;p=minetest.git diff --git a/src/map.cpp b/src/map.cpp index ba429f877..f1911d1a7 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -179,7 +179,7 @@ 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 + // Never allow placing CONTENT_IGNORE, it causes problems if(n.getContent() == CONTENT_IGNORE){ bool temp_bool; errorstream<<"Map::setNode(): Not allowing to place CONTENT_IGNORE"