Fix arg condition

This commit is contained in:
ccuser44 2025-01-02 16:10:18 +02:00 committed by GitHub
parent 780c703722
commit a72b6b2d47
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -807,7 +807,7 @@ Table* luaH_clone(lua_State* L, Table* tt, bool raw)
t->node = cast_to(LuaNode*, dummynode);
t->lastfree = 0;
if (raw) // Prevent unauthorized assigning of locked metatables
if (!raw) // Prevent unauthorized assigning of locked metatables
t->metatable = tt->metatable;
if (tt->sizearray)