mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-24 18:11:35 +00:00
Check for world AI disable
This commit is contained in:
parent
1e05bb20bf
commit
b62b0a2f00
1 changed files with 3 additions and 2 deletions
|
@ -1647,12 +1647,13 @@ namespace MWMechanics
|
|||
std::string stopKey = "stop";
|
||||
MWBase::LuaManager::ActorControls* actorControls
|
||||
= MWBase::Environment::get().getLuaManager()->getActorControls(mPtr);
|
||||
|
||||
const bool aiInactive
|
||||
= actorControls->mDisableAI || !MWBase::Environment::get().getMechanicsManager()->isAIActive();
|
||||
if (mWeaponType != ESM::Weapon::PickProbe && !isRandomAttackAnimation(mCurrentWeapon))
|
||||
{
|
||||
if (weapclass == ESM::WeaponType::Ranged || weapclass == ESM::WeaponType::Thrown)
|
||||
mAttackType = "shoot";
|
||||
else if (mPtr == getPlayer() || actorControls->mDisableAI)
|
||||
else if (mPtr == getPlayer() || aiInactive)
|
||||
{
|
||||
if (Settings::game().mBestAttack)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue