Fix properly

This commit is contained in:
SilicaAndPina 2021-06-27 21:22:57 +12:00
parent 6652b0804b
commit bbd715a464
2 changed files with 18 additions and 36 deletions

View file

@ -454,12 +454,13 @@ namespace HISP.Game.Horse
set
{
// Lol turns out pinto forgot to do this and u can have negative mood :D
/*
if (value > 1000)
value = 1000;
if (value < 0)
/*if (value < 0)
value = 0;
*/
mood = value;
Database.SetHorseMood(baseHorse.RandomId, value);
}