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:
LJ Sonic 2019-11-25 12:57:42 -05:00
commit 80b346fe80

View file

@ -9654,7 +9654,8 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall
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;
else if ((player->powers[pw_carry] == CR_NIGHTSMODE)
&& !(player->mo->state >= &states[S_PLAY_NIGHTS_TRANS1]