From 77bccebd2b13a7f83e40ad5b423f9356c2df1b56 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 a0d3942c298d3eecd507f52417a458ffcf68952b. --- 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 }, };