Server.Statics.UnfreezeMap_OnCommand C# (CSharp) Method

UnfreezeMap_OnCommand() private method

private UnfreezeMap_OnCommand ( CommandEventArgs e ) : void
e CommandEventArgs
return void
		public static void UnfreezeMap_OnCommand( CommandEventArgs e )
		{
			Map map = e.Mobile.Map;

			if ( map != null && map != Map.Internal )
				SendWarning( e.Mobile, "You are about to unfreeze <u>all items in {0}</u>.", BaseUnfreezeWarning, map, NullP3D, NullP3D, new WarningGumpCallback( UnfreezeWarning_Callback ) );
		}