1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Change some rough/inappropriate language in comments (#9061)

This commit is contained in:
random-geek 2019-10-23 17:17:00 -07:00 committed by Paramat
parent 1f142ec06f
commit 53ebd803c6
5 changed files with 12 additions and 9 deletions

View file

@ -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"