mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
Fixes #1187: Make GetDistance handle actors in remote cells gracefully
This commit is contained in:
parent
a35f7c73ae
commit
7f37f2c2be
@ -378,10 +378,14 @@ namespace MWScript
|
|||||||
|
|
||||||
float InterpreterContext::getDistance (const std::string& name, const std::string& id) const
|
float InterpreterContext::getDistance (const std::string& name, const std::string& id) const
|
||||||
{
|
{
|
||||||
// TODO handle exterior cells (when ref and ref2 are located in different cells)
|
const MWWorld::Ptr ref2 = getReference (id, false, false);
|
||||||
const MWWorld::Ptr ref2 = getReference (id, false);
|
// If either actor is in a non-active cell, return a large value (just like vanilla)
|
||||||
|
if (ref2.isEmpty())
|
||||||
|
return std::numeric_limits<float>().max();
|
||||||
|
|
||||||
const MWWorld::Ptr ref = MWBase::Environment::get().getWorld()->getPtr (name, true);
|
const MWWorld::Ptr ref = getReference (name, false, false);
|
||||||
|
if (ref.isEmpty())
|
||||||
|
return std::numeric_limits<float>().max();
|
||||||
|
|
||||||
double diff[3];
|
double diff[3];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user