mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 17:09:40 +00:00
Don't set Attacked flag when the actor is already in combat with the attacker (Fixes #1909)
This commit is contained in:
parent
c5fa0768f1
commit
1270dada34
2 changed files with 6 additions and 3 deletions
|
@ -329,7 +329,8 @@ namespace MWClass
|
|||
{
|
||||
// NOTE: 'object' and/or 'attacker' may be empty.
|
||||
|
||||
getCreatureStats(ptr).setAttacked(true);
|
||||
if (!attacker.isEmpty() && !ptr.getClass().getCreatureStats(ptr).getAiSequence().isInCombat(attacker))
|
||||
getCreatureStats(ptr).setAttacked(true);
|
||||
|
||||
// Self defense
|
||||
if ((canWalk(ptr) || canFly(ptr) || canSwim(ptr)) // No retaliation for totally static creatures
|
||||
|
|
|
@ -640,10 +640,12 @@ namespace MWClass
|
|||
|
||||
bool wasDead = getCreatureStats(ptr).isDead();
|
||||
|
||||
getCreatureStats(ptr).setAttacked(true);
|
||||
if (!attacker.isEmpty() && !ptr.getClass().getCreatureStats(ptr).getAiSequence().isInCombat(attacker))
|
||||
{
|
||||
getCreatureStats(ptr).setAttacked(true);
|
||||
|
||||
if (!attacker.isEmpty())
|
||||
MWBase::Environment::get().getMechanicsManager()->actorAttacked(ptr, attacker);
|
||||
}
|
||||
|
||||
if(!successful)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue