Fix some inverted logic.

Oops.
This commit is contained in:
Bill Currie 2012-01-28 21:01:19 +09:00
parent 7e078c7f9c
commit 57f920b9e9

View file

@ -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;
}