Fix build

This commit is contained in:
Skjalf
2022-01-14 08:06:06 -03:00
committed by GitHub
parent 9f82bb5616
commit 9b627f2e2b

View File

@@ -59,11 +59,11 @@ namespace LuaMap
/**
* Returns `true` if the [Map] has no [Player]s, `false` otherwise.
*
* @return bool isEmpty
* @return bool IsEmpty
*/
int IsEmpty(lua_State* L, Map* map)
{
Eluna::Push(L, map->isEmpty());
Eluna::Push(L, map->IsEmpty());
return 1;
}