[Bug Fix] quest::processmobswhilezoneempty() fix. (#3971)

This commit is contained in:
Paul Coene
2024-01-13 09:37:22 -05:00
committed by GitHub
parent 3b7a138de4
commit 4b5b29b165
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -933,9 +933,9 @@ void QuestManager::repopzone() {
}
}
void QuestManager::processmobswhilezoneempty(bool idle_when_empty) {
void QuestManager::processmobswhilezoneempty(bool turn_on) {
if (zone) {
zone->SetIdleWhenEmpty(idle_when_empty);
zone->SetIdleWhenEmpty(!turn_on);
} else {
LogQuests(
"QuestManager::processmobswhilezoneempty called with nullptr zone. Probably syntax error in quest file"