mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-22 20:55:52 +12:00
Fix properly
This commit is contained in:
parent
6652b0804b
commit
bbd715a464
2 changed files with 18 additions and 36 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue