mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 08:53:52 +00:00
Fix attack after shoot
This commit is contained in:
parent
dcd381049c
commit
8a48258b1b
1 changed files with 6 additions and 19 deletions
|
@ -1385,14 +1385,6 @@ bool CharacterController::updateWeaponState()
|
|||
MWBase::Environment::get().getWorld()->breakInvisibility(mPtr);
|
||||
mAttackStrength = 0;
|
||||
|
||||
// Randomize attacks for non-bipedal creatures with Weapon flag
|
||||
if (mPtr.getClass().getTypeName() == typeid(ESM::Creature).name() &&
|
||||
!mPtr.getClass().isBipedal(mPtr) &&
|
||||
(!mAnimation->hasAnimation(mCurrentWeapon) || isRandomAttackAnimation(mCurrentWeapon)))
|
||||
{
|
||||
mCurrentWeapon = chooseRandomAttackAnimation();
|
||||
}
|
||||
|
||||
if(mWeaponType == WeapType_Spell)
|
||||
{
|
||||
// Unset casting flag, otherwise pressing the mouse button down would
|
||||
|
@ -1401,15 +1393,10 @@ bool CharacterController::updateWeaponState()
|
|||
if (mPtr == player)
|
||||
{
|
||||
MWBase::Environment::get().getWorld()->getPlayer().setAttackingOrSpell(false);
|
||||
}
|
||||
|
||||
const MWWorld::ESMStore &store = MWBase::Environment::get().getWorld()->getStore();
|
||||
|
||||
// For the player, set the spell we want to cast
|
||||
// This has to be done at the start of the casting animation,
|
||||
// *not* when selecting a spell in the GUI (otherwise you could change the spell mid-animation)
|
||||
if (mPtr == player)
|
||||
{
|
||||
// For the player, set the spell we want to cast
|
||||
// This has to be done at the start of the casting animation,
|
||||
// *not* when selecting a spell in the GUI (otherwise you could change the spell mid-animation)
|
||||
std::string selectedSpell = MWBase::Environment::get().getWindowManager()->getSelectedSpell();
|
||||
stats.getSpells().setSelectedSpell(selectedSpell);
|
||||
}
|
||||
|
@ -1421,6 +1408,7 @@ bool CharacterController::updateWeaponState()
|
|||
MWMechanics::CastSpell cast(mPtr, NULL, false, mCastingManualSpell);
|
||||
cast.playSpellCastingEffects(spellid);
|
||||
|
||||
const MWWorld::ESMStore &store = MWBase::Environment::get().getWorld()->getStore();
|
||||
const ESM::Spell *spell = store.get<ESM::Spell>().find(spellid);
|
||||
const ESM::ENAMstruct &lastEffect = spell->mEffects.mList.back();
|
||||
const ESM::MagicEffect *effect;
|
||||
|
@ -1520,13 +1508,12 @@ bool CharacterController::updateWeaponState()
|
|||
startKey = mAttackType+" start";
|
||||
stopKey = mAttackType+" min attack";
|
||||
}
|
||||
|
||||
if (isRandomAttackAnimation(mCurrentWeapon))
|
||||
else if (isRandomAttackAnimation(mCurrentWeapon))
|
||||
{
|
||||
startKey = "start";
|
||||
stopKey = "stop";
|
||||
}
|
||||
else if (mAttackType != "shoot")
|
||||
else
|
||||
{
|
||||
if(mPtr == getPlayer())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue