From 9b627f2e2baaedcff6684222bb8e5cf4ffbc3739 Mon Sep 17 00:00:00 2001 From: Skjalf <47818697+Nyeriah@users.noreply.github.com> Date: Fri, 14 Jan 2022 08:06:06 -0300 Subject: [PATCH] Fix build --- MapMethods.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MapMethods.h b/MapMethods.h index 6c6260e..8ab49fd 100644 --- a/MapMethods.h +++ b/MapMethods.h @@ -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; }