aboutsummaryrefslogtreecommitdiff
path: root/src/ltm.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ltm.js')
-rw-r--r--src/ltm.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ltm.js b/src/ltm.js
index 6186066..742ce56 100644
--- a/src/ltm.js
+++ b/src/ltm.js
@@ -149,7 +149,7 @@ const luaT_gettmbyobj = function(L, o, event) {
mt = o.metatable;
break;
default:
- // TODO: mt = G(L)->mt[ttnov(o)];
+ mt = L.l_G.mt[o.ttnov()];
}
return mt ? mt.__index(mt, event) : ldo.nil;