Fix interest.

This commit is contained in:
SilicaAndPina 2021-01-01 22:57:16 +13:00
parent 8b36407981
commit b939c9e142
6 changed files with 20 additions and 17 deletions

View file

@ -599,7 +599,7 @@ namespace HISP.Game
double moneyMade = 0;
if (user.BankInterest > user.BankMoney)
{
moneyMade = user.BankMoney - user.BankInterest;
moneyMade = user.BankInterest - user.BankMoney;
user.BankMoney = user.BankInterest;
}