Change some rough/inappropriate language in comments (#9061)
authorrandom-geek <35757396+random-geek@users.noreply.github.com>
Thu, 24 Oct 2019 00:17:00 +0000 (17:17 -0700)
committerParamat <paramat@users.noreply.github.com>
Thu, 24 Oct 2019 00:17:00 +0000 (01:17 +0100)
games/minimal/mods/default/init.lua
src/constants.h
src/gui/guiEditBoxWithScrollbar.cpp
src/map.cpp
src/mapnode.cpp

index 02d195cbc8bd58c02788d636fc9d00ed9509aaa4..772cca8816d9339c6d65e27497c1ab349ca397e6 100644 (file)
@@ -1801,7 +1801,7 @@ function default.spawn_falling_node(p, nodename)
        spawn_falling_node(p, nodename)
 end
 
--- Horrible crap to support old code
+-- Horrible stuff to support old code
 -- Don't use this and never do what this does, it's completely wrong!
 -- (More specifically, the client and the C++ code doesn't get the group)
 function default.register_falling_node(nodename, texture)
index 5ddb5465621739bb424f01632a67ccb452511e45..7636b38e0e8d10b52f8bbbc52c5816ac3d61e208 100644 (file)
@@ -22,9 +22,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 /*
        All kinds of constants.
 
-       Cross-platform compatibility crap should go in porting.h.
+       Cross-platform compatibility stuff should go in porting.h.
 
-    Some things here are legacy crap.
+    Some things here are legacy.
 */
 
 /*
index 2f909f54f64fbafc08dcfb3c355e7317e27343be..44240668864357cda66a065f20d7ae7544bd20ae 100644 (file)
@@ -1109,10 +1109,13 @@ void GUIEditBoxWithScrollBar::breakText()
        m_broken_text_positions.push_back(last_line_start);
 }
 
-// TODO: that function does interpret VAlign according to line-index (indexed line is placed on top-center-bottom)
-// but HAlign according to line-width (pixels) and not by row.
-// Intuitively I suppose HAlign handling is better as VScrollPos should handle the line-scrolling.
-// But please no one change this without also rewriting (and this time fucking testing!!!) autoscrolling (I noticed this when fixing the old autoscrolling).
+// TODO: that function does interpret VAlign according to line-index (indexed
+// line is placed on top-center-bottom) but HAlign according to line-width
+// (pixels) and not by row.
+// Intuitively I suppose HAlign handling is better as VScrollPos should handle
+// the line-scrolling.
+// But please no one change this without also rewriting (and this time
+// testing!!!) autoscrolling (I noticed this when fixing the old autoscrolling).
 void GUIEditBoxWithScrollBar::setTextRect(s32 line)
 {
        if (line < 0)
index ba429f877b5af2b6632023ea678efd5dbb833a68..f1911d1a78c7d64d485c8a3bc50de61ecc237335 100644 (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"
index 557b376c3041ef1654fa3190703aac48e69e9127..bf7e79a71894eed0e6ca67f14c56d3cd45f322fb 100644 (file)
@@ -846,7 +846,7 @@ void MapNode::deSerialize_pre22(const u8 *source, u8 version)
        {
                // In these versions, CONTENT_IGNORE and CONTENT_AIR
                // are 255 and 254
-               // Version 19 is fucked up with sometimes the old values and sometimes not
+               // Version 19 is messed up with sometimes the old values and sometimes not
                if(param0 == 255)
                        param0 = CONTENT_IGNORE;
                else if(param0 == 254)