mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-05 21:55:42 +13:00
Fix hands
This commit is contained in:
parent
9ab8d071d9
commit
46d70a6fac
2 changed files with 2 additions and 2 deletions
|
@ -2333,7 +2333,7 @@ namespace HISP.Game
|
|||
{
|
||||
return HorseBreedDetailsFormat.Replace("%BREED%", breedName).Replace("%DESCRIPTION%", description);
|
||||
}
|
||||
public static string FormatHorseHeight(int minHeight, int maxHeight)
|
||||
public static string FormatHorseHeight(double minHeight, double maxHeight)
|
||||
{
|
||||
return HorseHeightRangeFormat.Replace("%MIN%", minHeight.ToString()).Replace("%MAX%", maxHeight.ToString());
|
||||
}
|
||||
|
|
|
@ -2424,7 +2424,7 @@ namespace HISP.Game
|
|||
message += Messages.FormatHorseAdvancedStat(personalityStat.BreedValue, personalityStat.CompanionOffset, personalityStat.TackOffset, personalityStat.MaxValue);
|
||||
|
||||
message += Messages.FormatHorseBreedDetails(horse.Breed.Name, horse.Breed.Description);
|
||||
message += Messages.FormatHorseHeight(Convert.ToInt32(Math.Floor(HorseInfo.CalculateHands(horse.Breed.BaseStats.MinHeight,false))), Convert.ToInt32(Math.Floor(HorseInfo.CalculateHands(horse.Breed.BaseStats.MaxHeight,false))));
|
||||
message += Messages.FormatHorseHeight(HorseInfo.CalculateHands(horse.Breed.BaseStats.MinHeight, false), HorseInfo.CalculateHands(horse.Breed.BaseStats.MaxHeight, false));
|
||||
|
||||
message += Messages.FormatPossibleColors(horse.Breed.Colors);
|
||||
if (horse.Leaser == 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue