mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-21 23:11:33 +00:00
Merge branch 'invis' into 'master'
Restore invisibility early-out in combat engagement See merge request OpenMW/openmw!2229
This commit is contained in:
commit
caf971b979
1 changed files with 3 additions and 0 deletions
|
@ -631,6 +631,9 @@ namespace MWMechanics
|
|||
}
|
||||
}
|
||||
|
||||
if (creatureStats2.getMagicEffects().get(ESM::MagicEffect::Invisibility).getMagnitude() > 0)
|
||||
return;
|
||||
|
||||
// Stop here if target is unreachable
|
||||
if (!canFight(actor1, actor2))
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue