chore(Core/ScriptMgr): Add Hooks for profession skill gains (#16526)

This commit is contained in:
Žan Skamljič
2023-06-19 21:12:20 +02:00
committed by GitHub
parent ec5eabce25
commit ee3ab6fe2a
3 changed files with 41 additions and 0 deletions

View File

@@ -975,6 +975,20 @@ void ScriptMgr::OnGetMaxSkillValue(Player* player, uint32 skill, int32& result,
});
}
void ScriptMgr::OnUpdateGatheringSkill(Player *player, uint32 skillId, uint32 currentLevel, uint32 gray, uint32 green, uint32 yellow, uint32 &gain) {
ExecuteScript<PlayerScript>([&](PlayerScript* script)
{
script->OnUpdateGatheringSkill(player, skillId, gray, green, yellow, currentLevel, gain);
});
}
void ScriptMgr::OnUpdateCraftingSkill(Player *player, SkillLineAbilityEntry const* skill, uint32 currentLevel, uint32& gain) {
ExecuteScript<PlayerScript>([&](PlayerScript* script)
{
script->OnUpdateCraftingSkill(player, skill, currentLevel, gain);
});
}
bool ScriptMgr::OnUpdateFishingSkill(Player* player, int32 skill, int32 zone_skill, int32 chance, int32 roll)
{
auto ret = IsValidBoolScript<PlayerScript>([&](PlayerScript* script)