mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:19:55 +00:00
broken
This commit is contained in:
parent
ce106d3bec
commit
b9bd4bc126
1 changed files with 4 additions and 1 deletions
|
@ -844,6 +844,8 @@ namespace MWMechanics
|
|||
for (std::vector<MWWorld::Ptr>::iterator it = neighbors.begin(); it != neighbors.end(); ++it)
|
||||
{
|
||||
<<<<<<< HEAD
|
||||
if ( *it == ptr
|
||||
&& it->getClass().isNpc()) continue; // not the player and is an NPC
|
||||
=======
|
||||
if (*it == ptr) continue; // not the player
|
||||
>>>>>>> parent of 54d9615... NPCs detect crime exclusively
|
||||
|
@ -862,7 +864,8 @@ namespace MWMechanics
|
|||
// Tell everyone, including yourself
|
||||
for (std::vector<MWWorld::Ptr>::iterator it1 = neighbors.begin(); it1 != neighbors.end(); ++it1)
|
||||
{
|
||||
if (*it1 == ptr) continue; // not the player
|
||||
if ( *it == ptr
|
||||
&& it->getClass().isNpc()) continue; // not the player and is an NPC
|
||||
|
||||
// TODO: Add more messages
|
||||
if (type == OT_Theft)
|
||||
|
|
Loading…
Reference in a new issue