mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-15 18:39:51 +00:00
Don't apply spells to dead actors
This commit is contained in:
parent
b8f5cd6cb7
commit
07251f0fa4
@ -2166,7 +2166,10 @@ namespace MWWorld
|
|||||||
if (!contact.first.isEmpty())
|
if (!contact.first.isEmpty())
|
||||||
{
|
{
|
||||||
if (contact.first.getClass().isActor())
|
if (contact.first.getClass().isActor())
|
||||||
contact.first.getClass().getCreatureStats(contact.first).getActiveSpells().addSpell(selectedSpell, contact.first, actor, ESM::RT_Touch, sourceName);
|
{
|
||||||
|
if (!contact.first.getClass().getCreatureStats(contact.first).isDead())
|
||||||
|
contact.first.getClass().getCreatureStats(contact.first).getActiveSpells().addSpell(selectedSpell, contact.first, actor, ESM::RT_Touch, sourceName);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// We hit a non-actor, e.g. a door. Only instant effects are relevant.
|
// We hit a non-actor, e.g. a door. Only instant effects are relevant.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user