fix(Scripts/Commands): Fix level up achievements not being granted (#19969)

This commit is contained in:
Andrew 2024-09-15 15:55:45 -03:00 committed by GitHub
parent 04c8e85434
commit ee6e74eb3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View file

@ -23,6 +23,7 @@ Category: commandscripts
EndScriptData */
#include "AccountMgr.h"
#include "AchievementMgr.h"
#include "Chat.h"
#include "CommandScript.h"
#include "DBCStores.h"
@ -272,6 +273,8 @@ public:
stmt->SetData(1, playerGuid.GetCounter());
CharacterDatabase.Execute(stmt);
sAchievementMgr->UpdateAchievementCriteriaForOfflinePlayer(playerGuid.GetCounter(), ACHIEVEMENT_CRITERIA_TYPE_REACH_LEVEL);
sCharacterCache->UpdateCharacterLevel(playerGuid, newLevel);
}
}