Server.Mobiles.PlayerMobile.ResendBuffs C# (CSharp) 메소드

ResendBuffs() 공개 메소드

public ResendBuffs ( ) : void
리턴 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 ) );
				}
			}
		}