]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
Changed FALSE to 0 to fix linux being grouchy
authorReki <spiper212@gmail.com>
Wed, 28 Apr 2021 18:20:40 +0000 (14:20 -0400)
committerReki <spiper212@gmail.com>
Wed, 28 Apr 2021 18:20:40 +0000 (14:20 -0400)
clvm_cmds.c

index 7cb9896ec6c9a2e21bae21f98999b80dec214bf3..6c784bf902d8cee5f283188cde22348bdabf0b66 100644 (file)
@@ -275,7 +275,7 @@ static void CL_VM_SetTraceGlobals(prvm_prog_t *prog, const trace_t *trace, int s
 }
 
 #define CL_HitNetworkBrushModels(move) !((move) == MOVE_WORLDONLY)
-#define CL_HitNetworkPlayers(move)     FALSE//!((move) == MOVE_WORLDONLY || (move) == MOVE_NOMONSTERS)
+#define CL_HitNetworkPlayers(move)     0//!((move) == MOVE_WORLDONLY || (move) == MOVE_NOMONSTERS)
 
 // #16 void(vector v1, vector v2, float movetype, entity ignore) traceline
 static void VM_CL_traceline (prvm_prog_t *prog)