Server.Mobiles.PlayerMobile.ResendBuffs C# (CSharp) Method

ResendBuffs() public method

public ResendBuffs ( ) : void
return void
		public void ResendBuffs()
		{
			if( !BuffInfo.Enabled || m_BuffTable == null )
				return;

			NetState state = this.NetState;

			if( state != null && state.BuffIcon )
			{
				foreach( BuffInfo info in m_BuffTable.Values )
				{
					state.Send( new AddBuffPacket( this, info ) );
				}
			}
		}