fix(Scripts/HoS): Adjust IsEncounterInProgress() (#5642)

This commit is contained in:
Axel Cocat
2021-05-09 07:04:24 +02:00
committed by GitHub
parent e5dea7a1a3
commit e9ebb1ae57
@@ -55,9 +55,11 @@ public:
{ {
for (uint8 i = 0; i < MAX_ENCOUNTER; ++i) for (uint8 i = 0; i < MAX_ENCOUNTER; ++i)
{ {
if (Encounter[i] == IN_PROGRESS) if (Encounter[i] == IN_PROGRESS && i != BRANN_BRONZEBEARD)
{
return true; return true;
} }
}
return false; return false;
} }