From 0e736f1ae9109e1f091aa0da2b3b4935117843e8 Mon Sep 17 00:00:00 2001 From: Foereaper Date: Mon, 5 Aug 2024 20:22:24 +0200 Subject: [PATCH] Remove accidental double space --- ElunaTemplate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElunaTemplate.h b/ElunaTemplate.h index 46bf58dfa5..09b2613574 100644 --- a/ElunaTemplate.h +++ b/ElunaTemplate.h @@ -198,7 +198,7 @@ class ElunaTemplate // create metatable for userdata of this type luaL_newmetatable(E->L, tname); - int metatable = lua_gettop(E->L); + int metatable = lua_gettop(E->L); // push methodtable to stack to be accessed and modified by users lua_pushvalue(E->L, metatable);