"Core/LuaInterface/ObjectTranslator.cs" did not exist on "4ab4bad3a1a1a863656012fdaefcc21f526a9ba9"
Commit a679211b authored by Vinicius Jarina's avatar Vinicius Jarina
Browse files
parent 6b5f6f09
...@@ -580,7 +580,7 @@ namespace NLua ...@@ -580,7 +580,7 @@ namespace NLua
} }
// Object already in the list of Lua objects? Push the stored reference. // Object already in the list of Lua objects? Push the stored reference.
bool found = (!objectsBackMap.GetType().IsValueType) && objectsBackMap.TryGetValue (o, out index); bool found = (!o.GetType().IsValueType) && objectsBackMap.TryGetValue (o, out index);
if (found) { if (found) {
LuaLib.LuaLGetMetatable (luaState, "luaNet_objects"); LuaLib.LuaLGetMetatable (luaState, "luaNet_objects");
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment