mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Fix trycameramove crash on dedicated server
This commit is contained in:
parent
32bbc48be5
commit
ac739b40bf
1 changed files with 3 additions and 0 deletions
|
@ -2502,6 +2502,9 @@ boolean P_TryCameraMove(fixed_t x, fixed_t y, camera_t *thiscam)
|
||||||
|
|
||||||
floatok = false;
|
floatok = false;
|
||||||
|
|
||||||
|
if (dedicated) // this crashes so don't even try it
|
||||||
|
return false;
|
||||||
|
|
||||||
if (twodlevel
|
if (twodlevel
|
||||||
|| (thiscam == &camera && players[displayplayer].mo && (players[displayplayer].mo->flags2 & MF2_TWOD))
|
|| (thiscam == &camera && players[displayplayer].mo && (players[displayplayer].mo->flags2 & MF2_TWOD))
|
||||||
|| (thiscam == &camera2 && players[secondarydisplayplayer].mo && (players[secondarydisplayplayer].mo->flags2 & MF2_TWOD)))
|
|| (thiscam == &camera2 && players[secondarydisplayplayer].mo && (players[secondarydisplayplayer].mo->flags2 & MF2_TWOD)))
|
||||||
|
|
Loading…
Reference in a new issue