From f1b10a72eaa16d51ef917985dd57484fa9766bb4 Mon Sep 17 00:00:00 2001 From: Kewin Rausch Date: Thu, 22 Aug 2024 17:30:14 +0200 Subject: [PATCH] =?UTF-8?q?Solved=20a=20bug=20which=20caused=20part=20of?= =?UTF-8?q?=20the=20creature=20to=20not=20be=20properly=20sca=E2=80=A6=20(?= =?UTF-8?q?#188)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/AutoBalance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoBalance.cpp b/src/AutoBalance.cpp index b6a696c..8e02467 100644 --- a/src/AutoBalance.cpp +++ b/src/AutoBalance.cpp @@ -4599,7 +4599,7 @@ class AutoBalance_AllMapScript : public AllMapScript LocaleConstant locale = session->GetSessionDbLocaleIndex(); // if the previous player count is the same as the new player count, update without force - if (prevAdjustedPlayerCount == mapABInfo->adjustedPlayerCount) + if ((prevAdjustedPlayerCount == mapABInfo->adjustedPlayerCount) && (mapABInfo->adjustedPlayerCount != 1)) { LOG_DEBUG("module.AutoBalance", "AutoBalance_AllMapScript::OnPlayerEnterAll: Player difficulty unchanged at {}. Updating map data (no force).", mapABInfo->adjustedPlayerCount