1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-29 00:32:49 +00:00

fixed a possible script bug regarding ID-access for instances that did not yet existed when the script was compiled

This commit is contained in:
Marc Zinnschlag 2015-10-06 14:30:32 +02:00
parent b4132faaea
commit e8f6897376

View File

@ -12,6 +12,7 @@
#include "../mwworld/ptr.hpp"
#include "../mwworld/class.hpp"
#include "../mwworld/manualref.hpp"
namespace MWScript
{
@ -42,9 +43,9 @@ namespace MWScript
}
else
{
MWWorld::Ptr ptr = MWBase::Environment::get().getWorld()->getPtr (id, false);
MWWorld::ManualRef ref (MWBase::Environment::get().getWorld()->getStore(), id);
script = ptr.getClass().getScript (ptr);
script = ref.getPtr().getClass().getScript (ref.getPtr());
reference = true;
}