mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
Fix linux build and warnings
This commit is contained in:
@@ -59,7 +59,7 @@ namespace LuaCorpse
|
||||
* Resets the [Corpse] ghost time.
|
||||
*
|
||||
*/
|
||||
int ResetGhostTime(Eluna* /*E*/, lua_State* L, Corpse* corpse)
|
||||
int ResetGhostTime(Eluna* /*E*/, lua_State* /*L*/, Corpse* corpse)
|
||||
{
|
||||
corpse->ResetGhostTime();
|
||||
return 0;
|
||||
@@ -69,7 +69,7 @@ namespace LuaCorpse
|
||||
* Saves the [Corpse] to the database.
|
||||
*
|
||||
*/
|
||||
int SaveToDB(Eluna* /*E*/, lua_State* L, Corpse* corpse)
|
||||
int SaveToDB(Eluna* /*E*/, lua_State* /*L*/, Corpse* corpse)
|
||||
{
|
||||
corpse->SaveToDB();
|
||||
return 0;
|
||||
@@ -79,7 +79,7 @@ namespace LuaCorpse
|
||||
* Deletes the [Corpse] from the world.
|
||||
*
|
||||
*/
|
||||
int DeleteBonesFromWorld(Eluna* /*E*/, lua_State* L, Corpse* corpse)
|
||||
int DeleteBonesFromWorld(Eluna* /*E*/, lua_State* /*L*/, Corpse* corpse)
|
||||
{
|
||||
corpse->DeleteBonesFromWorld();
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user