forked from mirror/openmw-tes3mp
Merge pull request #1181 from Assumeru/teleportation
Fix teleportation being unreachable
This commit is contained in:
commit
0cd4fc8cae
1 changed files with 3 additions and 6 deletions
|
@ -613,13 +613,10 @@ namespace MWMechanics
|
|||
return true;
|
||||
}
|
||||
}
|
||||
else if (target.getClass().isActor())
|
||||
else if (target.getClass().isActor() && effectId == ESM::MagicEffect::Dispel)
|
||||
{
|
||||
if (effectId == ESM::MagicEffect::Dispel)
|
||||
{
|
||||
target.getClass().getCreatureStats(target).getActiveSpells().purgeAll(magnitude);
|
||||
return true;
|
||||
}
|
||||
target.getClass().getCreatureStats(target).getActiveSpells().purgeAll(magnitude);
|
||||
return true;
|
||||
}
|
||||
else if (target.getClass().isActor() && target == getPlayer())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue