mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Fix some inverted logic.
Oops.
This commit is contained in:
parent
7e078c7f9c
commit
57f920b9e9
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ SCR_CShift (void)
|
|||
mleaf_t *leaf;
|
||||
int contents = CONTENTS_EMPTY;
|
||||
|
||||
if (cls.signon != SIGNONS && cl.worldmodel) {
|
||||
if (cls.signon == SIGNONS && cl.worldmodel) {
|
||||
leaf = Mod_PointInLeaf (r_refdef.vieworg, cl.worldmodel);
|
||||
contents = leaf->contents;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue