From cde14c1d9f2e8888d874e328f51859bbc1d7e665 Mon Sep 17 00:00:00 2001 From: Nev3r Date: Sun, 19 Apr 2020 12:23:51 +0200 Subject: [PATCH] Fix an outrageous typo which didn't get pushed for some reason. --- src/lua_mobjlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua_mobjlib.c b/src/lua_mobjlib.c index 1df955b4a..f294355ac 100644 --- a/src/lua_mobjlib.c +++ b/src/lua_mobjlib.c @@ -819,7 +819,7 @@ static int mapthing_get(lua_State *L) number = mt->tag; else if(fastcmp(field,"args")) { - LUA_PushUserdata(L, mt->stringargs, META_THINGARGS); + LUA_PushUserdata(L, mt->args, META_THINGARGS); return 1; } else if(fastcmp(field,"stringargs"))