Add remove buddy

This commit is contained in:
SilicaAndPina 2021-03-10 01:16:58 +13:00
parent 1772ceb037
commit 80be845824
7 changed files with 44 additions and 6 deletions

View file

@ -17,6 +17,7 @@ namespace HISP.Game
public static string AddBuddyPending;
public static string AddBuddyOtherPendingFormat;
public static string AddBuddyYourNowBuddiesFormat;
public static string AddBuddyDeleteBuddyFormat;
// Tag
public static string TagYourItFormat;
@ -1030,6 +1031,10 @@ namespace HISP.Game
// Click
public static string NothingInterestingHere;
public static string FormatAddBuddyRemoveBuddy(string buddyName)
{
return AddBuddyDeleteBuddyFormat.Replace("%PLAYERNAME%", buddyName);
}
public static string FormatTagTotalBuddies(int count)
{
return TagOtherBuddiesOnlineFormat.Replace("%TOTALBUDDIESON%", count.ToString("N0", CultureInfo.InvariantCulture));