From 6686221029ba54ceb69554f315930d381e5dfc95 Mon Sep 17 00:00:00 2001 From: fgsfds Date: Fri, 15 Sep 2023 20:53:06 +0200 Subject: [PATCH] port: fix #169 --- src/game/bondmove.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/bondmove.c b/src/game/bondmove.c index 45693fa73..173452f00 100644 --- a/src/game/bondmove.c +++ b/src/game/bondmove.c @@ -1196,7 +1196,7 @@ void bmoveProcessInput(bool allowc1x, bool allowc1y, bool allowc1buttons, bool i movedata.cannaturalturn = !g_Vars.currentplayer->insightaimmode; #ifndef PLATFORM_N64 - if (g_PlayerMouseAimMode == MOUSEAIM_LOCKED) { + if (g_PlayerMouseAimMode == MOUSEAIM_LOCKED || bgunGetWeaponNum(HAND_RIGHT) == WEAPON_HORIZONSCANNER) { movedata.cannaturalpitch = movedata.cannaturalpitch || (movedata.freelookdy != 0.0f); movedata.cannaturalturn = movedata.cannaturalturn || (movedata.freelookdx != 0.0f); }