mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +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;
|
mleaf_t *leaf;
|
||||||
int contents = CONTENTS_EMPTY;
|
int contents = CONTENTS_EMPTY;
|
||||||
|
|
||||||
if (cls.signon != SIGNONS && cl.worldmodel) {
|
if (cls.signon == SIGNONS && cl.worldmodel) {
|
||||||
leaf = Mod_PointInLeaf (r_refdef.vieworg, cl.worldmodel);
|
leaf = Mod_PointInLeaf (r_refdef.vieworg, cl.worldmodel);
|
||||||
contents = leaf->contents;
|
contents = leaf->contents;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue