From 0323b46e405c488c2b34b7f09ff87aaf73e432fc Mon Sep 17 00:00:00 2001 From: qndel Date: Tue, 31 Aug 2021 23:11:19 +0200 Subject: [PATCH] fix quest unique monster level --- Source/monster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/monster.cpp b/Source/monster.cpp index 982569fd9..b7e52ec7a 100644 --- a/Source/monster.cpp +++ b/Source/monster.cpp @@ -497,7 +497,7 @@ void PlaceUniqueMonst(int uniqindex, int miniontype, int bosspacksize) if (uniqueData.mlevel != 0) { monster.mLevel = 2 * uniqueData.mlevel; } else { - monster.mLevel += 5; + monster.mLevel = monster.MData->mLevel + 5; } monster.mExp *= 2;