mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 05:05:53 +12:00
Fix treasures
This commit is contained in:
parent
c0a03641c8
commit
ff91d7bafb
11 changed files with 245 additions and 18 deletions
|
@ -1495,6 +1495,8 @@ namespace HISP.Game
|
|||
{
|
||||
string message = "";
|
||||
int totalPrice = 0;
|
||||
|
||||
|
||||
foreach (HorseInstance horse in user.HorseInventory.HorseList)
|
||||
{
|
||||
message += Messages.FormatVetServiceHorseMeta(horse.Name, horse.BasicStats.Health, 1000);
|
||||
|
@ -1510,7 +1512,8 @@ namespace HISP.Game
|
|||
}
|
||||
|
||||
}
|
||||
message += Messages.FormatVetApplyAllServiceMeta(totalPrice);
|
||||
if (user.HorseInventory.HorseList.Length > 0)
|
||||
message += Messages.FormatVetApplyAllServiceMeta(totalPrice);
|
||||
message += Messages.ExitThisPlace;
|
||||
message += Messages.MetaTerminator;
|
||||
return message;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue