Browse Source

Turn off monster highlighting with Heal Other and Resurrect cursors

pull/5269/head
Cyril SIX 4 years ago committed by Anders Jenbo
parent
commit
17bf252608
  1. 2
      Source/cursor.cpp

2
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 {

Loading…
Cancel
Save