fix(Core/PlayerScript) Align player script function names (#21020)

Co-authored-by: sudlud <sudlud@users.noreply.github.com>
This commit is contained in:
Exitare 2025-02-16 05:59:41 -08:00 committed by GitHub
parent df7c23d763
commit 98ceb1c067
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
45 changed files with 749 additions and 749 deletions

View file

@ -27,7 +27,7 @@ public:
ServerMailReward() : PlayerScript("ServerMailReward", {PLAYERHOOK_ON_LOGIN}) { }
// CHARACTER_LOGIN = 8
void OnLogin(Player* player) override
void OnPlayerLogin(Player* player) override
{
// Retrieve all server mail records and session only once
auto const& serverMailStore = sObjectMgr->GetAllServerMailStore();