mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 23:32:06 +00:00
BETA testing idea for wallhack code
This commit is contained in:
parent
46c0f61815
commit
a3d97bbe13
1 changed files with 4 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.47 2002/08/27 06:56:15 niceass
|
||||
// BETA testing idea for wallhack code
|
||||
//
|
||||
// Revision 1.46 2002/08/27 05:46:58 niceass
|
||||
// change to anti-wallhack code
|
||||
//
|
||||
|
@ -2487,7 +2490,7 @@ qboolean CG_CheckPlayerVisible(vec3_t start, centity_t *cent) {
|
|||
for (i =0; i < 9; i++) {
|
||||
CG_Trace(&trace, start, NULL, NULL, ends[i], -1, CONTENTS_SOLID);
|
||||
|
||||
if ( trace.fraction == 1 || (trace.contents & CONTENTS_TRANSLUCENT) || (trace.surfaceFlags & SURF_NODRAW) )
|
||||
if ( trace.fraction == 1 || (trace.contents & ( CONTENTS_TRANSLUCENT | CONTENTS_DETAIL ) || (trace.surfaceFlags & ( SURF_NODRAW | SURF_GLASS ) ) )
|
||||
return qtrue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue