From d80f3e0b808d235fed2cd66e03824247e5823b4d Mon Sep 17 00:00:00 2001 From: rusefillc Date: Tue, 22 Feb 2022 20:42:57 -0500 Subject: [PATCH] Revert "lua: enabling string lib" This reverts commit f4297bafe6c96af714b759ad1d9ae27b9ec77239. --- firmware/controllers/lua/lua.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/firmware/controllers/lua/lua.cpp b/firmware/controllers/lua/lua.cpp index b782ee1c0a..0170ded3f5 100644 --- a/firmware/controllers/lua/lua.cpp +++ b/firmware/controllers/lua/lua.cpp @@ -141,7 +141,6 @@ static int lua_setTickRate(lua_State* l) { static void loadLibraries(LuaHandle& ls) { constexpr luaL_Reg libs[] = { { LUA_GNAME, luaopen_base }, - { LUA_STRLIBNAME, luaopen_string }, { LUA_MATHLIBNAME, luaopen_math }, };