mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-13 14:25:10 +00:00
Hide Metal Sonic's jet fume in first person
This commit is contained in:
parent
40dc532ea2
commit
3a96142c8b
1 changed files with 1 additions and 1 deletions
|
@ -2773,7 +2773,7 @@ boolean R_ThingVisible (mobj_t *thing)
|
||||||
return (!(
|
return (!(
|
||||||
thing->sprite == SPR_NULL ||
|
thing->sprite == SPR_NULL ||
|
||||||
( thing->flags2 & (MF2_DONTDRAW) ) ||
|
( thing->flags2 & (MF2_DONTDRAW) ) ||
|
||||||
thing == r_viewmobj
|
(r_viewmobj && (thing == r_viewmobj || (r_viewmobj->player && r_viewmobj->player->followmobj == thing)))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue