From d2b2a5a4fc96065bebcac39507866b4cf622a8a9 Mon Sep 17 00:00:00 2001 From: obligaron Date: Thu, 22 Jul 2021 17:03:47 +0200 Subject: [PATCH] Fix Counselor always hiding --- Source/monster.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/monster.cpp b/Source/monster.cpp index 977104b21..fdb4c8a39 100644 --- a/Source/monster.cpp +++ b/Source/monster.cpp @@ -3211,6 +3211,9 @@ void CounselorAi(int i) monster._mgoal = MGOAL_NORMAL; StartFadein(monster, md, true); } + } else { + monster._mgoal = MGOAL_NORMAL; + StartFadein(monster, md, true); } } else if (monster._mgoal == MGOAL_NORMAL) { if (abs(mx) >= 2 || abs(my) >= 2) {