mirror of
https://git.code.sf.net/p/quake/prozac-qfcc
synced 2025-03-23 02:51:44 +00:00
fix a warning found by qfcc's better precedence checking
This commit is contained in:
parent
4daa987414
commit
df08ea9bb9
1 changed files with 1 additions and 1 deletions
|
@ -786,7 +786,7 @@ void() trigger_push =
|
|||
|
||||
void() trigger_monsterjump_touch =
|
||||
{
|
||||
if ( other.flags & (FL_MONSTER | FL_FLY | FL_SWIM) != FL_MONSTER )
|
||||
if ((other.flags & (FL_MONSTER | FL_FLY | FL_SWIM)) != FL_MONSTER )
|
||||
return;
|
||||
|
||||
// set XY even if not on ground, so the jump will clear lips
|
||||
|
|
Loading…
Reference in a new issue