Add presents and fix bugs

This commit is contained in:
SilicaAndPina 2021-02-15 17:22:53 +13:00
parent d9cdd05acb
commit 0cf1665a11
12 changed files with 273 additions and 123 deletions

View file

@ -35,8 +35,10 @@ namespace HISP.Game.Horse
{
name = loadName;
}
Sex = breed.GenderTypes()[GameServer.RandomNumberGenerator.Next(0, 1)];
if(GameServer.RandomNumberGenerator.Next(0, 100) > 50)
Sex = breed.GenderTypes()[1];
else
Sex = breed.GenderTypes()[0];
description = loadDescription;
Breed = breed;