]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/pathlib/utility.qc
Unify boolean constants
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / pathlib / utility.qc
index 5a82e0845789aafed637ec5cb0f8df81db82041b..738ceb2ce8003ed2a66e84fdd0bd77de776bee6a 100644 (file)
@@ -74,7 +74,7 @@ entity pathlib_nodeatpoint(vector where)
     node = findradius(where,pathlib_gridsize * 0.5);
     while(node)
     {
-        if(node.is_path_node == TRUE)
+        if(node.is_path_node == true)
             return node;
 
         node = node.chain;