Do not use loadstring to load autorun (who even wrote this?). Also print a message in case of successful autorun load
This commit is contained in:
parent
64e16025d8
commit
4152bb560e
@ -334,9 +334,14 @@ tpt.partsdata = nil");
|
||||
|
||||
void LuaScriptInterface::Init()
|
||||
{
|
||||
if(Client::Ref().FileExists("autorun.lua"))
|
||||
if(luacon_eval("dofile(\"autorun.lua\")"))
|
||||
if(Client::Ref().FileExists("autorun.lua"))
|
||||
{
|
||||
lua_State *l = luacon_ci->l;
|
||||
if(luaL_loadfile(l, "autorun.lua") || lua_pcall(l, 0, 0, 0))
|
||||
luacon_ci->Log(CommandInterface::LogError, luacon_geterror());
|
||||
else
|
||||
luacon_ci->Log(CommandInterface::LogNotice, "Loaded autorun.lua");
|
||||
}
|
||||
}
|
||||
|
||||
void LuaScriptInterface::SetWindow(ui::Window * window)
|
||||
|
Loading…
Reference in New Issue
Block a user