forked from mirror/openmw-tes3mp
Bug #1189 fix by scrawl
This commit is contained in:
parent
f1353dc84f
commit
f36bea03ab
1 changed files with 2 additions and 0 deletions
|
@ -1873,6 +1873,8 @@ namespace MWWorld
|
|||
|
||||
bool World::getLOS(const MWWorld::Ptr& npc,const MWWorld::Ptr& targetNpc)
|
||||
{
|
||||
if (!targetNpc.getRefData().isEnabled() || !npc.getRefData().isEnabled())
|
||||
return false; // cannot get LOS unless both NPC's are enabled
|
||||
Ogre::Vector3 halfExt1 = mPhysEngine->getCharacter(npc.getRefData().getHandle())->getHalfExtents();
|
||||
float* pos1 = npc.getRefData().getPosition().pos;
|
||||
Ogre::Vector3 halfExt2 = mPhysEngine->getCharacter(targetNpc.getRefData().getHandle())->getHalfExtents();
|
||||
|
|
Loading…
Reference in a new issue