mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 13:15:53 +12:00
fix "a/an" and crashing
This commit is contained in:
parent
ff91d7bafb
commit
905dc1a6ce
5 changed files with 49 additions and 30 deletions
|
@ -12,6 +12,11 @@ namespace HISP.Game
|
|||
|
||||
// Mod isle
|
||||
public static string ModIsleMessage;
|
||||
|
||||
// Auction House
|
||||
public static string AuctionCurrentRunning;
|
||||
|
||||
|
||||
// Warp Command
|
||||
public static string SuccessfullyWarpedToLocation;
|
||||
public static string SuccessfullyWarpedToPlayer;
|
||||
|
@ -1599,9 +1604,9 @@ namespace HISP.Game
|
|||
}
|
||||
|
||||
|
||||
public static string FormatWildHorse(string name, string breed, int randomId)
|
||||
public static string FormatWildHorse(string name, string breed, int randomId, bool vowel)
|
||||
{
|
||||
return WildHorseFormat.Replace("%NAME%", name).Replace("%BREED%", breed).Replace("%RANDOMID%", randomId.ToString());
|
||||
return WildHorseFormat.Replace("%NAME%", name).Replace("%BREED%", breed).Replace("%RANDOMID%", randomId.ToString()).Replace("%N%", vowel ? "n" : "");
|
||||
}
|
||||
public static string FormatHorseBreedPreview(string name, string description)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue