mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix missing else
This commit is contained in:
parent
37c5a3fa9e
commit
eb2f1558f2
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ const TString* luaT_objtypenamestr(lua_State* L, const TValue* o)
|
||||||
if (ttisstring(type))
|
if (ttisstring(type))
|
||||||
return tsvalue(type);
|
return tsvalue(type);
|
||||||
}
|
}
|
||||||
if (ttislightuserdata(o))
|
else if (ttislightuserdata(o))
|
||||||
{
|
{
|
||||||
const TString* name = L->global->lightuserdataname[o->extra[0]];
|
const TString* name = L->global->lightuserdataname[o->extra[0]];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue