1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

Merge remote-tracking branch 'viadanna/fix/invisible-combat'

This commit is contained in:
Marc Zinnschlag 2014-12-03 15:34:02 +01:00
commit e2efc4770d

View file

@ -325,6 +325,11 @@ namespace MWMechanics
currentAction = prepareNextAction(actor, target);
actionCooldown = currentAction->getActionCooldown();
}
// Stop attacking if target is not seen
if (!MWBase::Environment::get().getMechanicsManager()->awarenessCheck(target, actor))
return true;
if (currentAction.get())
currentAction->getCombatRange(rangeAttack, rangeFollow);