mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-02 20:45:32 +00:00
Fix being able to activate magic bolts mid-flight
This commit is contained in:
parent
ac4c904e62
commit
9b9c39af7a
1 changed files with 3 additions and 0 deletions
|
@ -509,6 +509,9 @@ void OMW::Engine::activate()
|
|||
if (ptr.isEmpty())
|
||||
return;
|
||||
|
||||
if (ptr.getClass().getName(ptr) == "") // objects without name presented to user can never be activated
|
||||
return;
|
||||
|
||||
MWScript::InterpreterContext interpreterContext (&ptr.getRefData().getLocals(), ptr);
|
||||
|
||||
boost::shared_ptr<MWWorld::Action> action =
|
||||
|
|
Loading…
Reference in a new issue