forked from teamnwah/openmw-tes3coop
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:
parent
b4132faaea
commit
e8f6897376
1 changed files with 3 additions and 2 deletions
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
#include "../mwworld/ptr.hpp"
|
#include "../mwworld/ptr.hpp"
|
||||||
#include "../mwworld/class.hpp"
|
#include "../mwworld/class.hpp"
|
||||||
|
#include "../mwworld/manualref.hpp"
|
||||||
|
|
||||||
namespace MWScript
|
namespace MWScript
|
||||||
{
|
{
|
||||||
|
@ -42,9 +43,9 @@ namespace MWScript
|
||||||
}
|
}
|
||||||
else
|
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;
|
reference = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue