Eluna add mangos support. Notice that old MANGOS is now CMANGOS

This commit is contained in:
Rochet2
2014-06-29 14:16:59 +03:00
committed by Foereaper
parent 1f75dc7843
commit 8fe509c838
4 changed files with 58 additions and 26 deletions

View File

@@ -331,7 +331,11 @@ namespace LuaPlayer
int IsTaxiCheater(lua_State* L, Player* player)
{
#ifdef MANGOS
Eluna::Push(L, player->IsTaxiCheater());
#else
Eluna::Push(L, player->isTaxiCheater());
#endif
return 1;
}