mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-04 08:36:41 +00:00
Do not copy the whole attributes store
This commit is contained in:
parent
fc1f244627
commit
1126f38a1e
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ namespace MWLua
|
||||||
|
|
||||||
auto skillIncreasesForAttributeStatsT
|
auto skillIncreasesForAttributeStatsT
|
||||||
= context.mLua->sol().new_usertype<SkillIncreasesForAttributeStats>("SkillIncreasesForAttributeStats");
|
= context.mLua->sol().new_usertype<SkillIncreasesForAttributeStats>("SkillIncreasesForAttributeStats");
|
||||||
for (auto attribute : MWBase::Environment::get().getESMStore()->get<ESM::Attribute>())
|
for (const auto& attribute : MWBase::Environment::get().getESMStore()->get<ESM::Attribute>())
|
||||||
{
|
{
|
||||||
skillIncreasesForAttributeStatsT[ESM::RefId(attribute.mId).serializeText()] = sol::property(
|
skillIncreasesForAttributeStatsT[ESM::RefId(attribute.mId).serializeText()] = sol::property(
|
||||||
[=](const SkillIncreasesForAttributeStats& stat) { return stat.get(context, attribute.mId); },
|
[=](const SkillIncreasesForAttributeStats& stat) { return stat.get(context, attribute.mId); },
|
||||||
|
|
Loading…
Reference in a new issue