1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-16 16:20:53 +00:00

Check for world AI disable

This commit is contained in:
Zackhasacat 2024-05-15 11:56:58 -05:00
parent 1e05bb20bf
commit b62b0a2f00

View File

@ -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)
{