forked from teamnwah/openmw-tes3coop
Don't set magic effects for dead actors (Fixes #1783)
This commit is contained in:
parent
4138c3e966
commit
fcd2a9e4d5
1 changed files with 2 additions and 1 deletions
|
@ -344,7 +344,8 @@ namespace MWMechanics
|
|||
void Actors::adjustMagicEffects (const MWWorld::Ptr& creature)
|
||||
{
|
||||
CreatureStats& creatureStats = creature.getClass().getCreatureStats (creature);
|
||||
|
||||
if (creatureStats.isDead())
|
||||
return;
|
||||
MagicEffects now = creatureStats.getSpells().getMagicEffects();
|
||||
|
||||
if (creature.getTypeName()==typeid (ESM::NPC).name())
|
||||
|
|
Loading…
Reference in a new issue