feat: add PLAYER_EVENT_ON_COMPLETE_QUEST (#90)

This commit is contained in:
veserine
2023-02-05 21:49:51 +08:00
committed by GitHub
parent 34b0c513f0
commit 067f780911
7 changed files with 21 additions and 3 deletions

View File

@@ -786,6 +786,11 @@ public:
{
sEluna->OnStoreNewItem(player, item, count);
}
void OnPlayerCompleteQuest(Player* player, Quest const* quest) override
{
sEluna->OnPlayerCompleteQuest(player, quest);
}
};
class Eluna_ServerScript : public ServerScript