chore(lua): Add empty newlines for code readability

This commit is contained in:
PRESFIL
2025-07-05 19:26:22 +00:00
committed by Jari Sundell
parent 9ed8fe8fd8
commit 43c36db5fc
+2
View File
@@ -53,8 +53,10 @@ LuaEngine::override_package_path() {
auto l_state = m_luaState;
lua_getglobal(l_state, "package");
lua_getfield(l_state, -1, "path");
std::string current_path(lua_tostring(l_state, -1));
std::string new_path = local_path + ';' + current_path;
lua_pushstring(l_state, new_path.c_str());
lua_setfield(l_state, -3, "path");
lua_pop(l_state, 2);