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

View File

@@ -55,8 +55,10 @@ public:
{
for (uint8 i = 0; i < MAX_ENCOUNTER; ++i)
{
if (Encounter[i] == IN_PROGRESS)
if (Encounter[i] == IN_PROGRESS && i != BRANN_BRONZEBEARD)
{
return true;
}
}
return false;
}