mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-15 02:06:47 +00:00
Merge branch 'absorption' into 'master'
Restore empty target check in spell absorption See merge request OpenMW/openmw!338
This commit is contained in:
commit
b85d507f35
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ namespace MWMechanics
|
||||||
|
|
||||||
bool absorbSpell (const std::string& spellId, const MWWorld::Ptr& caster, const MWWorld::Ptr& target)
|
bool absorbSpell (const std::string& spellId, const MWWorld::Ptr& caster, const MWWorld::Ptr& target)
|
||||||
{
|
{
|
||||||
if (spellId.empty() || caster == target || !target.getClass().isActor())
|
if (spellId.empty() || target.isEmpty() || caster == target || !target.getClass().isActor())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
CreatureStats& stats = target.getClass().getCreatureStats(target);
|
CreatureStats& stats = target.getClass().getCreatureStats(target);
|
||||||
|
|
Loading…
Reference in a new issue