Update IsDungeonBoss for Mangos

This commit is contained in:
BuildingOutLoud
2021-04-13 11:49:36 -06:00
parent 687c9585e3
commit 88bc259151

View File

@@ -242,7 +242,11 @@ namespace LuaCreature
*/
int IsDungeonBoss(lua_State* L, Creature* creature)
{
#if defined(TRINITY) || defined(AZEROTHCORE)
Eluna::Push(L, creature->IsDungeonBoss());
#else
Eluna::Push(L, creature->IsWorldBoss());
#endif
return 1;
}