Feat(LuaEngine/PlayerHooks): Add OnCanPlayerResurrect (#236)

This commit is contained in:
iThorgrim
2025-02-08 07:33:43 +01:00
committed by GitHub
parent ccfcc5f86f
commit 7511f38eab
5 changed files with 17 additions and 0 deletions

View File

@@ -812,6 +812,11 @@ public:
{
sEluna->OnCreatureKilledByPet(player, killed);
}
bool CanPlayerResurrect(Player* player) override
{
return sEluna->CanPlayerResurrect(player);
}
};
class Eluna_ServerScript : public ServerScript