mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-30 18:36:43 +00:00
Don't play touch spell explosions on non-activatable statics
This commit is contained in:
parent
eecf412b85
commit
0c603e986d
1 changed files with 3 additions and 0 deletions
|
@ -3187,6 +3187,9 @@ namespace MWWorld
|
|||
if (effectIt->mRange != rangeType || (effectIt->mArea <= 0 && !ignore.isEmpty() && ignore.getClass().isActor()))
|
||||
continue; // Not right range type, or not area effect and hit an actor
|
||||
|
||||
if (effectIt->mRange == ESM::RT_Touch && (!ignore.isEmpty()) && (!ignore.getClass().isActor() && !ignore.getClass().canBeActivated(ignore)))
|
||||
continue; // Don't play explosion for touch spells on non-activatable objects
|
||||
|
||||
// Spawn the explosion orb effect
|
||||
const ESM::Static* areaStatic;
|
||||
if (!effect->mArea.empty())
|
||||
|
|
Loading…
Reference in a new issue