diff options
-rw-r--r-- | plugins/MirLua/src/m_protocols.cpp | 4 | ||||
-rw-r--r-- | plugins/MirLua/src/mlua.cpp | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/plugins/MirLua/src/m_protocols.cpp b/plugins/MirLua/src/m_protocols.cpp index 9aa4b4f753..28c6f19ddc 100644 --- a/plugins/MirLua/src/m_protocols.cpp +++ b/plugins/MirLua/src/m_protocols.cpp @@ -36,7 +36,7 @@ static int lua_ProtoIterator(lua_State *L) {
lua_pushinteger(L, (i + 1));
lua_replace(L, lua_upvalueindex(1));
- MapToTable(L, protos[i]);
+ lua_pushlightuserdata(L, protos[i]);
}
else
lua_pushnil(L);
@@ -138,7 +138,7 @@ static int lua_AccountIterator(lua_State *L) {
lua_pushinteger(L, (i + 1));
lua_replace(L, lua_upvalueindex(1));
- MapToTable(L, accounts[i]);
+ lua_pushlightuserdata(L, accounts[i]);
}
else
lua_pushnil(L);
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index 6a54f92592..c55cbe57f7 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -71,6 +71,8 @@ void CMLua::Unload() ::KillModuleIcons(hScriptsLangpack);
::KillModuleMenus(hScriptsLangpack);
::KillModuleHotkeys(hScriptsLangpack);
+ ::KillObjectEventHooks(L);
+ ::KillObjectServices(L);
CMLua::KillModuleServices();
CMLua::KillModuleEventHooks();
//KillModuleSubclassing
|