Server.Gumps.ReportMurdererGump.ReportedListExpiry_Callback C# (CSharp) Méthode

ReportedListExpiry_Callback() public static méthode

public static ReportedListExpiry_Callback ( object state ) : void
state object
Résultat void
		public static void ReportedListExpiry_Callback( object state )
		{
			object[] states = (object[])state;

			PlayerMobile from = (PlayerMobile)states[0];
			Mobile killer = (Mobile)states[1];

			if (from.RecentlyReported.Contains(killer))
			{
				from.RecentlyReported.Remove(killer);
			}
		}