forked from mirror/openmw-tes3mp
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/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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue