From a122ba0ef4af865d225adbe22a55b8001af04c61 Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Sun, 6 Jan 2019 10:24:44 +0100 Subject: Fix various bugs (Anticheat, Lua helpers) (#8013) * Fix various bugs (Anticheat, Lua helpers) Anticheat: Use camera position instead of player position for shoot line calculations Lua helpers: Increase 'i' to not overwrite earlier added table values * Remove lag compensation * * 1.5 for larger selection boxes --- src/script/lua_api/l_object.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/script/lua_api/l_object.cpp') diff --git a/src/script/lua_api/l_object.cpp b/src/script/lua_api/l_object.cpp index f077d42a0..e673778e9 100644 --- a/src/script/lua_api/l_object.cpp +++ b/src/script/lua_api/l_object.cpp @@ -1681,8 +1681,7 @@ int ObjectRef::l_get_sky(lua_State *L) s16 i = 1; for (const std::string ¶m : params) { lua_pushlstring(L, param.c_str(), param.size()); - lua_rawseti(L, -2, i); - i++; + lua_rawseti(L, -2, i++); } lua_pushboolean(L, clouds); return 4; -- cgit v1.2.3