mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Fix arg condition
This commit is contained in:
parent
780c703722
commit
a72b6b2d47
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue