forked from teamnwah/openmw-tes3coop
Fix AiCombat being incorrectly added to player (Fixes #1356)
This commit is contained in:
parent
1173957e56
commit
f53e86cad9
1 changed files with 1 additions and 1 deletions
|
@ -932,7 +932,7 @@ namespace MWMechanics
|
||||||
|
|
||||||
for (std::list<MWWorld::Ptr>::iterator it = listGuards.begin(); it != listGuards.end(); ++it)
|
for (std::list<MWWorld::Ptr>::iterator it = listGuards.begin(); it != listGuards.end(); ++it)
|
||||||
{
|
{
|
||||||
engageCombat(iter->first, *it, false);
|
engageCombat(iter->first, *it, *it == player);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue