diff --git a/GameObjectMethods.h b/GameObjectMethods.h index f5815b2..4ced7fe 100644 --- a/GameObjectMethods.h +++ b/GameObjectMethods.h @@ -138,10 +138,10 @@ namespace LuaGameObject */ int GetLootRecipientGroup(Eluna* /*E*/, lua_State* L, GameObject* go) { -#ifdef MANGOS - Eluna::Push(L, go->GetGroupLootRecipient()); -#else +#ifdef TRINITY Eluna::Push(L, go->GetLootRecipientGroup()); +#else + Eluna::Push(L, go->GetGroupLootRecipient()); #endif return 1; }