mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
Fix r2ed
This commit is contained in:
parent
fab78e58e9
commit
1a8b6333ba
2 changed files with 10 additions and 2 deletions
|
@ -1132,7 +1132,7 @@ void CFarTP::disconnectFromPreviousShard()
|
|||
*/
|
||||
NetMngr.reinit();
|
||||
|
||||
if( !isReselectingChar() )
|
||||
if (isIngame())
|
||||
{
|
||||
nlinfo("FarTP: calling EntitiesMngr.reinit()");
|
||||
EntitiesMngr.reinit();
|
||||
|
|
|
@ -238,7 +238,15 @@ void CComLuaModule::initLuaLib()
|
|||
};
|
||||
int initialStackSize = lua_gettop(_LuaState);
|
||||
#if LUA_VERSION_NUM >= 502
|
||||
luaL_newlib(_LuaState, methods);
|
||||
// luaL_newlib(_LuaState, methods);
|
||||
// lua_setglobal(_LuaState, R2_LUA_PATH);
|
||||
lua_getglobal(_LuaState, R2_LUA_PATH);
|
||||
if (lua_isnil(_LuaState, -1))
|
||||
{
|
||||
lua_pop(_LuaState, 1);
|
||||
lua_newtable(_LuaState);
|
||||
}
|
||||
luaL_setfuncs(_LuaState, methods, 0);
|
||||
lua_setglobal(_LuaState, R2_LUA_PATH);
|
||||
#else
|
||||
luaL_openlib(_LuaState, R2_LUA_PATH, methods, 0);
|
||||
|
|
Loading…
Reference in a new issue