mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-17 23:21:22 +00:00
Merge branch 'eximove-sign-fix' into 'master'
Do not focus the camera on the end sign if exitmove is active See merge request STJr/SRB2Internal!550
This commit is contained in:
commit
80b346fe80
1 changed files with 2 additions and 1 deletions
|
@ -9654,7 +9654,8 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall
|
||||||
|
|
||||||
if (player->exiting)
|
if (player->exiting)
|
||||||
{
|
{
|
||||||
if (mo->target && mo->target->type == MT_SIGN && mo->target->spawnpoint)
|
if (mo->target && mo->target->type == MT_SIGN && mo->target->spawnpoint
|
||||||
|
&& !(gametype == GT_COOP && (netgame || multiplayer) && cv_exitmove.value))
|
||||||
sign = mo->target;
|
sign = mo->target;
|
||||||
else if ((player->powers[pw_carry] == CR_NIGHTSMODE)
|
else if ((player->powers[pw_carry] == CR_NIGHTSMODE)
|
||||||
&& !(player->mo->state >= &states[S_PLAY_NIGHTS_TRANS1]
|
&& !(player->mo->state >= &states[S_PLAY_NIGHTS_TRANS1]
|
||||||
|
|
Loading…
Reference in a new issue