From b7db8b988dda56ac7839f27273fe13bd30ce6828 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 4 Sep 2020 22:54:11 +0200 Subject: [PATCH] - SW: Ignore follow mode setting when not on the automap. Fixes #311. --- source/sw/src/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sw/src/input.cpp b/source/sw/src/input.cpp index 32148c808..9584b8032 100644 --- a/source/sw/src/input.cpp +++ b/source/sw/src/input.cpp @@ -115,7 +115,7 @@ getinput(InputPacket *loc, SWBOOL tied) MoveScrollMode2D(Player + myconnectindex); // !JIM! Added M_Active() so that you don't move at all while using menus - if (M_Active() || automapFollow) + if (M_Active() || (automapFollow && automapMode != am_off)) return; int32_t turnamount;