1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 16:29:55 +00:00

Allow Actors to pick an attack type/animation when no AI applies

This commit is contained in:
Zackhasacat 2024-05-15 11:39:02 -05:00
parent 2bed7450b6
commit 1e05bb20bf

View file

@ -1645,12 +1645,14 @@ namespace MWMechanics
{
std::string startKey = "start";
std::string stopKey = "stop";
MWBase::LuaManager::ActorControls* actorControls
= MWBase::Environment::get().getLuaManager()->getActorControls(mPtr);
if (mWeaponType != ESM::Weapon::PickProbe && !isRandomAttackAnimation(mCurrentWeapon))
{
if (weapclass == ESM::WeaponType::Ranged || weapclass == ESM::WeaponType::Thrown)
mAttackType = "shoot";
else if (mPtr == getPlayer())
else if (mPtr == getPlayer() || actorControls->mDisableAI)
{
if (Settings::game().mBestAttack)
{