From 7446be330efe7d8a8a91dd24a058bbace5d4ef9e Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:32:41 +0200 Subject: [PATCH] Add explanatory note comment --- VM/src/ltable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VM/src/ltable.cpp b/VM/src/ltable.cpp index 635212f6..ad2825e2 100644 --- a/VM/src/ltable.cpp +++ b/VM/src/ltable.cpp @@ -807,7 +807,7 @@ Table* luaH_clone(lua_State* L, Table* tt) t->node = cast_to(LuaNode*, dummynode); t->lastfree = 0; - if (!luaL_getmetafield(L, 1, "__metatable")) + if (!luaL_getmetafield(L, 1, "__metatable")) // Prevent unauthorized assigning of locked metatables t->metatable = tt->metatable; if (tt->sizearray)