From 2b442a73c2c0aae5cef90e118cc940f3eaccd284 Mon Sep 17 00:00:00 2001 From: ephphatha Date: Tue, 26 Jul 2022 09:28:13 +1000 Subject: [PATCH] Fix highlighting towners 1-4 after visiting the dungeon --- Source/cursor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cursor.cpp b/Source/cursor.cpp index 2f8deae30..7cd4f875f 100644 --- a/Source/cursor.cpp +++ b/Source/cursor.cpp @@ -680,7 +680,7 @@ void CheckCursMove() pcursitem = -1; cursPosition = { mx, my }; } - if (pcursmonst != -1 && Monsters[pcursmonst].isPlayerMinion()) { + if (pcursmonst != -1 && leveltype != DTYPE_TOWN && Monsters[pcursmonst].isPlayerMinion()) { pcursmonst = -1; } }