update component parent environment to the pack environment

This commit is contained in:
MihailRis
2024-07-02 20:01:29 +03:00
parent 3fe66e134d
commit 0082a3444e
4 changed files with 27 additions and 32 deletions
+1 -1
View File
@@ -451,7 +451,7 @@ void scripting::load_entity_component(const scriptenv& penv, const EntityDef& de
auto L = lua::get_main_thread();
std::string src = files::read_string(file);
logger.info() << "script (component) " << file.u8string();
lua::loadbuffer(L, 0, src, file.u8string());
lua::loadbuffer(L, *penv, src, file.u8string());
lua::store_in(L, lua::CHUNKS_TABLE, def.scriptName);
}