Skip to content

Commit

Permalink
Skok w cieniu nie zadziala dla postaci siedzacej na koniu. (#218)
Browse files Browse the repository at this point in the history
* Skok w cieniu nie zadziala dla postaci siedzacej na koniu.

* zmiana komunikatu

---------

Co-authored-by: GajuszZOrod <[email protected]>
  • Loading branch information
GajuszZOrod and GajuszZOrod authored Oct 16, 2024
1 parent e7865fc commit 98bcbd5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Scripts/Spells/Ninjitsu/ShadowJump.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ public void Target( IPoint3D p )
{
Caster.SendLocalizedMessage( 1063087 ); // You must be in stealth mode to use this ability.
}
else if (Caster.Mounted)
{
Caster.SendLocalizedMessage(1063132); // You cannot use this ability while mounted.
}
else if ( Factions.Sigil.ExistsOn( Caster ) )
{
Caster.SendLocalizedMessage( 1061632 ); // You can't do that while carrying the sigil.
Expand Down

0 comments on commit 98bcbd5

Please sign in to comment.