mirror of
https://github.com/mangosfour/server.git
synced 2025-12-18 01:37:01 +00:00
Build error fixes
43 errors left at this point
This commit is contained in:
parent
3abc31c429
commit
924d182855
18 changed files with 123 additions and 71 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue