mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 15:15:31 +00:00
Limit sMagicinvalidEffect to self-cast spells
This commit is contained in:
parent
6c3cad238b
commit
f25c65260c
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ namespace MWMechanics
|
|||
|
||||
if (!world->isWaterWalkingCastableOnTarget(target))
|
||||
{
|
||||
if (castByPlayer)
|
||||
if (castByPlayer && caster == target)
|
||||
MWBase::Environment::get().getWindowManager()->messageBox ("#{sMagicInvalidEffect}");
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue