Removes redundant delegate type declarations

This commit is contained in:
Kamron Batman 2018-09-14 14:32:04 -07:00
parent 3c9842ee5a
commit c85b0a740c
317 changed files with 898 additions and 903 deletions

View file

@ -274,7 +274,7 @@ namespace Server.Guilds
return;
if ( AllowAdvancedSearch && info.ButtonID == 8 )
pm.SendGump( new GuildAdvancedSearchGump( pm, guild, m_Display, new SearchSelectionCallback( AdvancedSearch_Callback ) ));
pm.SendGump( new GuildAdvancedSearchGump( pm, guild, m_Display, AdvancedSearch_Callback ));
}

View file

@ -103,7 +103,7 @@ namespace Server.Guilds
{
pm.SendLocalizedMessage( 1013071 ); // Enter the new guild charter (50 characters max):
pm.BeginPrompt( new PromptCallback( SetCharter_Callback ), true ); //Have the same callback handle both canceling and deletion cause the 2nd callback would just get a text of ""
pm.BeginPrompt( SetCharter_Callback, true ); //Have the same callback handle both canceling and deletion cause the 2nd callback would just get a text of ""
}
break;
}
@ -112,7 +112,7 @@ namespace Server.Guilds
if ( IsLeader( pm, guild ) )
{
pm.SendLocalizedMessage( 1013072 ); // Enter the new website for the guild (50 characters max):
pm.BeginPrompt( new PromptCallback( SetWebsite_Callback ), true ); //Have the same callback handle both canceling and deletion cause the 2nd callback would just get a text of ""
pm.BeginPrompt( SetWebsite_Callback, true ); //Have the same callback handle both canceling and deletion cause the 2nd callback would just get a text of ""
}
break;
}

View file

@ -127,7 +127,7 @@ namespace Server.Guilds
{
pm.SendLocalizedMessage( 1011128 ); // Enter the new title for this guild member or 'none' to remove a title:
pm.BeginPrompt( new PromptCallback( SetTitle_Callback ) );
pm.BeginPrompt( SetTitle_Callback );
}
else if ( m_Member.GuildTitle == null || m_Member.GuildTitle.Length <= 0 )
{

View file

@ -411,7 +411,7 @@ namespace Server.Guilds
else
{
pm.SendLocalizedMessage( 1063439 ); // Enter a name for the new alliance:
pm.BeginPrompt( new PromptCallback( CreateAlliance_Callback ) );
pm.BeginPrompt( CreateAlliance_Callback );
}
}
#endregion