mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-27 19:11:34 +00:00
Merge branch 'actor_souls_only' into 'master'
Don't hit the ground Closes #6339 See merge request OpenMW/openmw!1295
This commit is contained in:
commit
ed1953b811
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ namespace MWMechanics
|
||||||
cast.mHitPosition = hitPosition;
|
cast.mHitPosition = hitPosition;
|
||||||
cast.cast(object, false);
|
cast.cast(object, false);
|
||||||
// Apply magic effects directly instead of waiting a frame to allow soul trap to work on one-hit kills
|
// Apply magic effects directly instead of waiting a frame to allow soul trap to work on one-hit kills
|
||||||
if(victim.getClass().isActor())
|
if(!victim.isEmpty() && victim.getClass().isActor())
|
||||||
MWBase::Environment::get().getMechanicsManager()->updateMagicEffects(victim);
|
MWBase::Environment::get().getMechanicsManager()->updateMagicEffects(victim);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue