Build error fixes

43 errors left at this point
This commit is contained in:
Charles A Edwards 2016-01-30 19:17:47 +00:00 committed by Antz
parent 3abc31c429
commit 924d182855
18 changed files with 123 additions and 71 deletions

View file

@ -534,14 +534,14 @@ namespace LuaPlayer
/**
* Returns 'true' if the [Player] has taxi cheat activated, 'false' otherwise.
*
* @return bool isTaxiCheater
* @return bool IsTaxiCheater
*/
int IsTaxiCheater(Eluna* /*E*/, lua_State* L, Player* player)
{
#ifdef MANGOS
Eluna::Push(L, player->IsTaxiCheater());
#else
Eluna::Push(L, player->isTaxiCheater());
Eluna::Push(L, player->IsTaxiCheater());
#endif
return 1;
}