diff options
author | aunsane <aunsane@gmail.com> | 2017-09-28 20:16:27 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-09-29 00:38:40 +0300 |
commit | af9c3d7de7e35632d046575b5e4809a04abec816 (patch) | |
tree | d25ed109332d38540d6b044bd4471e4fc2d1b0c5 /plugins/MirLua/src/m_sounds.cpp | |
parent | b640e652b54030de26a22f57494fa71561dd4e99 (diff) |
MirLua: added CMLuaEnviroment to execute lua code from extetnal source in sandbox
Diffstat (limited to 'plugins/MirLua/src/m_sounds.cpp')
-rw-r--r-- | plugins/MirLua/src/m_sounds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/m_sounds.cpp b/plugins/MirLua/src/m_sounds.cpp index 7c044caaee..2acd36f203 100644 --- a/plugins/MirLua/src/m_sounds.cpp +++ b/plugins/MirLua/src/m_sounds.cpp @@ -7,7 +7,7 @@ static int lua_AddSound(lua_State *L) ptrW section(mir_utf8decodeW(luaL_optstring(L, 3, MODULE)));
ptrW filePath(mir_utf8decodeW(lua_tostring(L, 4)));
- int res = Skin_AddSound(name, section, description, filePath, CMLuaScript::GetScriptIdFromEnviroment(L));
+ int res = Skin_AddSound(name, section, description, filePath, CMLuaEnviroment::GetEnviromentId(L));
lua_pushboolean(L, res == 0);
return 1;
|