/// <summary>
 /// Called when a player leaves the game
 /// </summary>
 /// <param name="e">The event which was raised</param>
 /// <param name="sender">Sender of the event</param>
 /// <param name="args">EventArgs associated with the event</param>
 protected void PlayerLeftWorld(DOLEvent e, object sender, EventArgs args)
 {
     if (sender is GamePlayer player)
     {
         ShadowShroudEffect shadowShroud = player.EffectList.GetOfType <ShadowShroudEffect>();
         shadowShroud?.Cancel(false);
     }
 }
Example #2
0
        /// <summary>
        /// Called when a player leaves the game
        /// </summary>
        /// <param name="e">The event which was raised</param>
        /// <param name="sender">Sender of the event</param>
        /// <param name="args">EventArgs associated with the event</param>
        protected void PlayerLeftWorld(DOLEvent e, object sender, EventArgs args)
        {
            GamePlayer player = sender as GamePlayer;

            ShadowShroudEffect ShadowShroud = (ShadowShroudEffect)player.EffectList.GetOfType <ShadowShroudEffect>();

            if (ShadowShroud != null)
            {
                ShadowShroud.Cancel(false);
            }
        }