From 17bf252608a06bc723dac4bf05e875fbe786b885 Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Sun, 21 Aug 2022 23:38:20 +0200 Subject: [PATCH] Turn off monster highlighting with Heal Other and Resurrect cursors --- Source/cursor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cursor.cpp b/Source/cursor.cpp index c86db111e..d3c7eb764 100644 --- a/Source/cursor.cpp +++ b/Source/cursor.cpp @@ -535,7 +535,7 @@ void CheckCursMove() pcursmonst = -1; cursPosition = { mx, my }; } - if (pcursmonst != -1 && Monsters[pcursmonst].isPlayerMinion()) { + if (pcursmonst != -1 && (Monsters[pcursmonst].isPlayerMinion() || IsAnyOf(pcurs, CURSOR_HEALOTHER, CURSOR_RESURRECT))) { pcursmonst = -1; } } else {